Bridge

String..::..Split Method (array<Char>[]()[][])

Splits a string into substrings that are based on the characters in an array.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public string[] Split(
	params char[] separator
)
<TemplateAttribute> _
Public Function Split ( _
	ParamArray separator As Char() _
) As String()
[TemplateAttribute]
public:
array<String^>^ Split(
	... array<wchar_t^>^ separator
)

Parameters

separator
Type: array<System..::..Char>[]()[][]
A character array that delimits the substrings in this string, an empty array that contains no delimiters, or null.

Return Value

An array whose elements contain the substrings from this instance that are delimited by one or more characters in separator. For more information, see the Remarks section.