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 RegexMatch(this string, string, out Match)Declarationpublic static bool RegexMatch(
this string input,
string pattern,
out Match match
) Summary
Determines whether the input string matches the specified regular expression pattern. 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. |