Regex::Split Method
Splits an input string into an array of substrings at the positions defined by a regular expression match.
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | Split(String^) | Splits an input string into an array of substrings at the positions defined by a regular expression pattern specified in the Regex constructor. |
![]() | Split(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. |
![]() | Split(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. |
![]() ![]() | Split(String^, String^) | Splits an input string into an array of substrings at the positions defined by a regular expression pattern. |
![]() ![]() | Split(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. |
![]() ![]() | Split(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. |

