Group Class

Group Class

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Represents the results from a single capturing group.

System::Object
  System.Text.RegularExpressions::Capture
    System.Text.RegularExpressions::Group
      System.Text.RegularExpressions::Match

Namespace:  System.Text.RegularExpressions
Assembly:  System (in System.dll)

No code example is currently available or this language may not be supported.

The Group type exposes the following members.

  NameDescription
Public propertyCapturesGets a collection of all the captures matched by the capturing group, in innermost-leftmost-first order (or innermost-rightmost-first order if the regular expression is modified with the RegexOptions::RightToLeft option). The collection may have zero or more items.
Public propertyIndexThe position in the original string where the first character of the captured substring was found. (Inherited from Capture.)
Public propertyLengthThe length of the captured substring. (Inherited from Capture.)
Public propertySuccessGets a value indicating whether the match is successful.
Public propertyValueGets the captured substring from the input string. (Inherited from Capture.)
Top

  NameDescription
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodToStringGets the captured substring from the input string. (Inherited from Capture.)
Top

A capturing group can capture zero, one, or more strings in a single match because of quantifiers. All the substrings matched by a single capturing group are available from the Group::Captures property. Information about the last substring captured can be accessed directly from the Value and Index properties. (That is, the Group instance is equivalent to the last item of the collection returned by the Captures property, which reflects the last capture made by the capturing group.)

An example helps to clarify this relationship between a Group object and the System.Text.RegularExpressions::CaptureCollection that is returned by the Captures property. The regular expression pattern (\b(\w+?)[,:;]?\s?)+[?.!] matches entire sentences. The regular expression is defined as shown in the following table.

Pattern

Description

\b

Begin the match at a word boundary.

(\w+?)

Match one or more word characters, but as few characters as possible. This is the second (inner) capturing group. (The first capturing group includes the \b language element.)

[,:;]?

Match zero or one occurrence of a comma, colon, or semicolon.

\s?

Match zero or one occurrence of a white-space character.

(\b(\w+?)[,:;]?\s?)+

Match the pattern consisting of a word boundary, one or more word characters, a punctuation symbol, and a white-space character one or more times. This is the first capturing group.

[?.!]

Match any occurrence of a period, question mark, or exclamation point.

In this regular expression pattern, the subpattern (\w+?) is designed to match multiple words within a sentence. However, the value of the Group object represents only the last match that (\w+?) captures, whereas the Captures property returns a CaptureCollection that represents all captured text. As the output shows, the CaptureCollection for the second capturing group contains four objects. The last of these corresponds to the Group object.

No code example is currently available or this language may not be supported.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Show:
© 2017 Microsoft