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: MatchCollection RegexMatches(this string, string, RegexOptions)Declarationpublic static MatchCollection RegexMatches(
this string input,
string pattern,
RegexOptions options = None
) Summary
Searches the specified input string for all occurrences of a specified regular expression
pattern. Parametersthis 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. |
Returns
A collection of the Match objects found by the search. If no matches are found, the method returns an empty
collection object. |