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: bool RegexMatchIgnoreCase(this string, string, out Match)Declarationpublic static bool RegexMatchIgnoreCase(
this string input,
string pattern,
out Match match
) Summary
Determines whether the input string matches the specified regular expression pattern using a culture-invariant case-insensitive match. Parametersthis string | input |
The string to search for a match. | string | pattern |
The regular expression pattern to match. | out Match | match |
Receives an object that contains information about the match. |
Returns
A boolean indicating whether a match was found or not. |