Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: MatchCollection RegexMatchesIgnoreCase(this string, string)

Declaration

public static MatchCollection RegexMatchesIgnoreCase(
    this string input,
    string pattern
)

Summary

Searches the specified input string for all occurrences of a specified regular expression pattern.

Parameters

this stringinput The string to search for a match.
stringpattern The regular expression pattern to match.

Returns

A collection of the Match objects found by the search. If no matches are found, the method returns an empty collection object.