Table of Contents

Class CMSRegex

Namespace
CMS.Base
Assembly
CMS.Base.dll

Defined lazy initialized regular expression

public class CMSRegex : CMSLazy<Regex>
Inheritance
object
CMSLazy<Regex>
CMSRegex
Inherited Members
Extension Methods

Constructors

CMSRegex(string, bool)

Constructor

public CMSRegex(string pattern, bool ignoreCase)

Parameters

pattern string

Expression pattern

ignoreCase bool

If true, the regular expression is case insensitive

CMSRegex(string, RegexOptions)

Constructor

public CMSRegex(string pattern, RegexOptions options = RegexOptions.Compiled)

Parameters

pattern string

Expression pattern

options RegexOptions

Options

Fields

IgnoreCase

Defines the options for ignoring case within regular expression

public const RegexOptions IgnoreCase = IgnoreCase | CultureInvariant

Field Value

RegexOptions

Methods

EnsureCorrectOptions(RegexOptions)

Adds CultureInvariant option when there is ignore case to ensure correct behavior in Turkish culture.

public static RegexOptions EnsureCorrectOptions(RegexOptions options)

Parameters

options RegexOptions

Options to be modified

Returns

RegexOptions

GetDefaultOptions(bool)

Gets the default options for a regular expression

public static RegexOptions GetDefaultOptions(bool ignoreCase)

Parameters

ignoreCase bool

If true, the regular expression is case insensitive

Returns

RegexOptions

IsMatch(string)

Returns true if the given pattern is found within the input string

public bool IsMatch(string input)

Parameters

input string

Input string

Returns

bool

Match(string)

Searches the specified input string for the first occurrence of the regular expression

public Match Match(string input)

Parameters

input string

Input text

Returns

Match

Matches(string)

Searches the specified input for all recurrences of regular expression

public MatchCollection Matches(string input)

Parameters

input string

Input text

Returns

MatchCollection

Replace(string, string, bool)

Replaces the specified pattern within the given input with the given replacement

public string Replace(string input, string replacement, bool allowSubstitutions = true)

Parameters

input string

Input string

replacement string

Replacement

allowSubstitutions bool

If set to false, substitutions are not allowed within the replacement string

Returns

string

Replace(string, MatchEvaluator)

Replaces the specified pattern within the given input with the given replacement

public string Replace(string input, MatchEvaluator evaluator)

Parameters

input string

Input string

evaluator MatchEvaluator

Match evaluator

Returns

string