Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: string[] RegexSplitIgnoreCase(this string, string)

Declaration

public static string[] RegexSplitIgnoreCase(
    this string input,
    string pattern
)

Summary

Splits the input string at the position defined by pattern. The pattern is matched using an invariant-culture case-insensitive match.

Parameters

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

Returns

A new string array consisting of the pieces of the input string found between matches of the regular expression.