StringsSplit Method
Get a one-dimensional zero-based array containing the specified number of substrings.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static string[] Split(
string expression,
string delimiter = "",
int limit = -1
)
Public Shared Function Split (
expression As String,
Optional delimiter As String = "",
Optional limit As Integer = -1
) As String()
- expression String
- Expression containing substrings and delimiters.
- delimiter String (Optional)
- Any individual character used to identify substring boundaries. If Delimiter is omitted, the space character (" ") is assumed to be the delimiter.
- limit Int32 (Optional)
- Maximum number of substrings into which the input string should be split. The default value is -1, which indicates that the input string should be split every time the Delimiter string appears.
StringMatriz de String. Si Expression es una cadena de longitud cero (""), devuelve una matriz de un solo elemento que contiene una cadena de longitud cero.
If Delimiter is a zero-length string or does not appear in Expression, returns a single-element array containing the entire Expression string.