Split Method (String)

Regex.Split Method (String)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Splits the specified input string at the positions defined by a regular expression pattern specified in the Regex constructor.

Namespace:  System.Text.RegularExpressions
Assembly:  System (in System.dll)

'Declaration
Public Function Split ( _
	input As String _
) As String()

Parameters

input
Type: System.String
The string to split.

Return Value

Type: System.String ()
An array of strings.

ExceptionCondition
ArgumentNullException

input is Nothing.

The Regex.Split(String) method is similar to the String.Split(Char()) method, except this method splits the string at a delimiter determined by a regular expression instead of a set of characters. The string is split as many times as possible. If no delimiter is found, the return value contains one element whose value is the original input parameter string.

If multiple matches are adjacent to one another, an empty string is inserted into the array. For example, splitting a string on a single hyphen causes the returned array to include an empty string in the position where two adjacent hyphens are found, as the following code shows.


Dim regex As Regex = New Regex("-")         ' Split on hyphens.
Dim substrings() As String = regex.Split("plum--pear")
For Each match As String In substrings
   outputBlock.Text += String.Format("'{0}'", match) & vbCrLf
Next
' The method writes the following:
'    'plum'
'    ''
'    'pear'      


If capturing parentheses are used in a Regex.Split expression, any captured text is included in the resulting string array. For example, splitting the string " plum-pear" on a hyphen placed within capturing parentheses adds a string element that contains the hyphen to the returned array.


Dim regex As Regex = New Regex("(-)")          ' Split on hyphens.
Dim substrings() As String = regex.Split("plum-pear")
For Each match As String In substrings
   outputBlock.Text += String.Format("'{0}'", match) & vbCrLf
Next
' The method writes the following:
'    'plum'
'    '-'
'    'pear'      


When the regular expression pattern includes multiple sets of capturing parentheses, all captured text is added to the returned array. For example, the following code uses two sets of capturing parentheses to extract the elements of a date, including the date delimiters, from a date string. The first set of capturing parentheses captures the hyphen, while the second set captures the forward slash. The input string uses forward slashes as delimiters and they are included in the array returned by the Regex.Split(String) method.


Dim input As String = "07/14/2007"
Dim pattern As String = "(-)|(/)"
Dim regex As Regex = New Regex(pattern)
For Each result As String In regex.Split(input)
   outputBlock.Text += String.Format("'{0}'", result) & vbCrLf
Next
' The method returns an array of 5 elements, as follows:
'    '07'
'    '/'
'    '14'
'    '/'
'    '2007' 


If the regular expression can match the empty string, Split(String) will split the string into an array of single-character strings because the empty string delimiter can be found at every location. For example:


Dim input As String = "characters"
Dim regex As New Regex("")
Dim substrings() As String = regex.Split(input)
outputBlock.Text &= "{"
For ctr As Integer = 0 To substrings.Length - 1
   outputBlock.Text &= substrings(ctr)
   If ctr < substrings.Length - 1 Then outputBlock.Text &= ", "
Next
outputBlock.Text &= "}" & vbCrLf
' The example produces the following output:   
'    {, c, h, a, r, a, c, t, e, r, s, }


Note that the returned array also includes an empty string at the beginning and end of the array.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft