Regex.Split Method
.NET Framework 3.0
Splits an input string into an array of substrings at the positions defined by a regular expression match.
| Name | Description |
|---|---|
| Regex.Split (String) | Splits the specified input string at the positions defined by a regular expression pattern specified in the Regex constructor. Supported by the .NET Compact Framework. |
| Regex.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. Supported by the .NET Compact Framework. |
| Regex.Split (String, String) | Splits the input string at the positions defined by a regular expression pattern. Supported by the .NET Compact Framework. |
| Regex.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. Supported by the .NET Compact Framework. |
| Regex.Split (String, String, RegexOptions) | Splits the input string at the positions defined by a specified regular expression pattern. Specified options modify the matching operation. Supported by the .NET Compact Framework. |
Community Additions
ADD
Show: