Containing Type: Pattern
Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll
Method | Summary |
---|---|
NamedGroup(String, Object) | Appends a named group with a specified name and content. |
NamedGroup(String, Object[]) | Appends a named group with a specified name and content. |
Appends a named group with a specified name and content.
public Pihrtsoft.Text.RegularExpressions.Linq.QuantifiablePattern NamedGroup(string name, object content)
name String
A name of the group.
content Object
The content to be matched.
name is not a valid regex group name.
name or content is null
.
Appends a named group with a specified name and content.
public Pihrtsoft.Text.RegularExpressions.Linq.QuantifiablePattern NamedGroup(string name, params object[] content)
name String
A name of the group.
content Object[]
An object array that contains zero or more patterns any one of which has to be matched.
name is not a valid regex group name.
name or content is null
.