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