C# Class Pchp.Library.PerlRegex.Group

Represents the results from a single capturing group. A capturing group can capture zero, one, or more strings in a single match because of quantifiers, so Group supplies a collection of Capture objects.
Inheritance: Capture
Show file Open project: iolevel/peachpie Class Usage Examples

Public Methods

Method Description
Synchronized ( Group inner ) : Group

Returns a Group object equivalent to the one supplied that is safe to share between multiple threads.

Private Methods

Method Description
Group ( string text, int caps, int capcount, string name ) : System

Method Details

Synchronized() public static method

Returns a Group object equivalent to the one supplied that is safe to share between multiple threads.
public static Synchronized ( Group inner ) : Group
inner Group
return Group