Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.51 KB

File metadata and controls

53 lines (31 loc) · 1.51 KB

Pattern.Parenthesis Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
Parenthesis() Appends a pattern that matches left or right parenthesis.
Parenthesis(Int32) Appends a pattern that matches left or right parenthesis specified number of times.

Parenthesis()


Appends a pattern that matches left or right parenthesis.

public Pihrtsoft.Text.RegularExpressions.Linq.CharGroup Parenthesis()

Returns

CharGroup

Parenthesis(Int32)


Appends a pattern that matches left or right parenthesis specified number of times.

public Pihrtsoft.Text.RegularExpressions.Linq.QuantifiedGroup Parenthesis(int exactCount)

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.