This topic has not yet been rated - Rate this topic

Regex.Split Method

Splits an input string into an array of substrings at the positions defined by a regular expression match.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

  Name Description
Public method Split(String) Splits the specified input string at the positions defined by a regular expression pattern specified in the Regex constructor.
Public method Split(String, Int32) Splits the specified input string a specified maximum number of times at the positions defined by a regular expression specified in the Regex constructor.
Public method Static member Split(String, String) Splits the input string at the positions defined by a regular expression pattern.
Public method Split(String, Int32, Int32) Splits the specified input string a specified maximum number of times at the positions defined by a regular expression specified in the Regex constructor. The search for the regular expression pattern starts at a specified character position in the input string.
Public method Static member Split(String, String, RegexOptions) Splits the input string at the positions defined by a specified regular expression pattern. Specified options modify the matching operation.
Top
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Split a CSV string
input from text box tbCSV, output to label lblResult...

        For Each i As String In Regex.Split(tbCSV.Text, ",(?=(?:[^""]*""[^""]*"")*(?![^""]*""))")
            lblResult.Text = lblResult.Text & "|" & i
        Next