Split Method

Regex.Split Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

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.

  NameDescription
Public method Split(String) Splits the specified input string at the positions defined by a regular expression pattern specified in the Regex constructor.
Public method 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.
Public method Static member Split(String, String) Splits the input string at the positions defined by a regular expression pattern.
Public method 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.
Public method Static member Split(String, String, RegexOptions) Splits the input string at the positions defined by a specified regular expression pattern. Specified options modify the matching operation.
Public method Static member 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.
Top

Show:
© 2017 Microsoft