HtmlEscape(input, leaveSingleQuotesAlone, leaveDoubleQuotesAlone) Indent(str, by, indentFirstLine) ParseInt(str, default_, style, provider) Replace(str, oldValue, newValue, comparison)
Legend Class Struct Enum Interface Delegate | Constructor Method Property Event Field |
| Extension method: string[] RegexSplit(this string, string, RegexOptions)Declarationpublic static string[] RegexSplit(
this string input,
string pattern,
RegexOptions options = None
) Summary
Splits the input string at the position defined by pattern. Parametersthis string | input |
The string to search for a match. | string | pattern |
The regular expression pattern to split by. | RegexOptions | options |
A bitwise combination of the enumeration values that provide options for matching. |
Returns
A new string array consisting of the pieces of the input string found between matches of the regular expression. |