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, RegexOptions, out Match)Declarationpublic static bool RegexMatch(
this string input,
string pattern,
RegexOptions options,
out Match match
)Summary
Determines whether the input string matches the specified regular expression pattern. Parameters| this string | input |
The string to search for a match. | | string | pattern |
The regular expression pattern to match. | | RegexOptions | options |
A bitwise combination of the enumeration values that provide options for matching. | | out Match | match |
Receives an object that contains information about the match. |
Returns
A boolean indicating whether a match was found or not. |