Click or drag to resize
Match Class
Represents the results from a single regular expression match.
Inheritance Hierarchy

Namespace: System.Text.RegularExpressions
Assembly: CSharpXamlForHtml5.System.dll (in CSharpXamlForHtml5.System.dll.dll) Version: 1.0.0.0
Syntax
C#
public class Match : Group

The Match type exposes the following members.

Constructors
  NameDescription
Public methodMatch
Initializes a new instance of the Match class
Top
Methods
  NameDescription
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodNextMatch
Returns a new System.Text.RegularExpressions.Match object with the results for the next match, starting at the position at which the last match ended (at the character after the last matched character).
Public methodResult
Returns the expansion of the specified replacement pattern.
Public methodToString (Inherited from Group.)
Top
Properties
  NameDescription
Public propertyStatic memberEmpty
Gets the empty group. All failed matches return this empty match.
Public propertyGroups
Gets a collection of groups matched by the regular expression.
Public propertyIndex (Inherited from Group.)
Public propertyLength (Inherited from Group.)
Public propertyValue (Inherited from Group.)
Top
See Also