Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.59 KB

File metadata and controls

53 lines (31 loc) · 1.59 KB

Pattern.RightSquareBracket Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
RightSquareBracket() Appends a pattern that matches a right square bracket.
RightSquareBracket(Int32) Appends a pattern that matches a specified number of right square brackets.

RightSquareBracket()


Appends a pattern that matches a right square bracket.

public Pihrtsoft.Text.RegularExpressions.Linq.QuantifiablePattern RightSquareBracket()

Returns

QuantifiablePattern

RightSquareBracket(Int32)


Appends a pattern that matches a specified number of right square brackets.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.