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[] RegexSplitIgnoreCase(this string, string)Declarationpublic static string[] RegexSplitIgnoreCase(
this string input,
string pattern
) Summary
Splits the input string at the position defined by pattern. The pattern is
matched using an invariant-culture case-insensitive match. Parametersthis string | input |
The string to search for a match. | string | pattern |
The regular expression pattern to split by. |
Returns
A new string array consisting of the pieces of the input string found between matches of the regular expression. |