Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
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.
Overload List
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, 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(Regex, String, Int32, Int32) | Splits the input string at the positions defined by a specified regular expression pattern and with the specified options. |
![]() |
Split(String, Int32, 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. |
![]() ![]() |
Split(String, RegexOptions, String, Int32, Int32) | Splits the input string at the positions defined by a specified regular expression pattern. Specified options modify the matching operation. |
Top