Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Regex::Split Method

 

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

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

NameDescription
System_CAPS_pubmethodSplit(String^)

Splits an input string into an array of substrings at the positions defined by a regular expression pattern specified in the Regex constructor.

System_CAPS_pubmethodSplit(String^, Int32)

Splits an input string a specified maximum number of times into an array of substrings, at the positions defined by a regular expression specified in the Regex constructor.

System_CAPS_pubmethodSplit(String^, Int32, Int32)

Splits an input string a specified maximum number of times into an array of substrings, 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.

System_CAPS_pubmethodSystem_CAPS_staticSplit(String^, String^)

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

System_CAPS_pubmethodSystem_CAPS_staticSplit(String^, String^, RegexOptions)

Splits an input string into an array of substrings at the positions defined by a specified regular expression pattern. Specified options modify the matching operation.

System_CAPS_pubmethodSystem_CAPS_staticSplit(String^, String^, RegexOptions, TimeSpan)

Splits an input string into an array of substrings at the positions defined by a specified regular expression pattern. Additional parameters specify options that modify the matching operation and a time-out interval if no match is found.

Return to top
Show:
© 2017 Microsoft