Click or drag to resize
CMSRegex Class
Defined lazy initialized regular expression
Inheritance Hierarchy
SystemObject
  CMS.BaseCMSLazyRegex
    CMS.BaseCMSRegex

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 10.0.0
Syntax
C#
public class CMSRegex : CMSLazy<Regex>

The CMSRegex type exposes the following members.

Constructors
  NameDescription
Public methodCMSRegex(String, Boolean)
Constructor
Public methodCMSRegex(String, RegexOptions)
Constructor
Top
Fields
  NameDescription
Public fieldStatic memberIgnoreCase
Defines the options for ignoring case within regular expression
Top
Properties
  NameDescription
Public propertyAllowCloneForNewThread
If true, the item is copied for the new thread
(Inherited from CMSLazyTValue.)
Public propertyDefaultValue
Default value
(Inherited from CMSLazyTValue.)
Protected propertyInitializer
Value initialization function
(Inherited from CMSLazyTValue.)
Public propertyIsValueCreated
Returns true if the value was already created
(Inherited from CMSLazyTValue.)
Public propertyRequestStockKey
Defines the key under which the object value should be stored in the request stock helper. If set, the object exists only within the particular request
(Inherited from CMSLazyTValue.)
Public propertyValue
Gets or sets the object value
(Inherited from CMSLazyTValue.)
Top
Methods
  NameDescription
Protected methodCanInitialize
Returns true, if the object value can initialize
(Inherited from CMSLazyTValue.)
Public methodStatic memberEnsureCorrectOptions
Adds CultureInvariant option when there is ignore case to ensure correct behavior in Turkish culture.
Public methodFromItems Obsolete.
Gets the lazy value from the given items
(Inherited from CMSLazyTValue.)
Public methodStatic memberGetDefaultOptions
Gets the default options for a regular expression
Public methodIsMatch
Returns true if the given pattern is found within the input string
Public methodMatch
Searches the specified input string for the first occurrence of the regular expression
Public methodMatches
Searches the specified input for all recurrences of regular expression
Protected methodNewValue
Creates a new value using the initializer
(Inherited from CMSLazyTValue.)
Public methodReplace(String, MatchEvaluator)
Replaces the specified pattern within the given input with the given replacement
Public methodReplace(String, String, Boolean)
Replaces the specified pattern within the given input with the given replacement
Public methodReset
Resets the state of the object to re-initialize the value on the next request
(Inherited from CMSLazyTValue.)
Top
See Also