Regex.Split Method
.NET Framework 2.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, starting 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. Options can be specified to modify matching behavior. Supported by the .NET Compact Framework. |
Community Additions
ADD
Show: