Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.68 KB

File metadata and controls

53 lines (31 loc) · 1.68 KB

Pattern.NotSquareBracket Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
NotSquareBracket() Appends a pattern that matches a character that is neither left nor right square bracket.
NotSquareBracket(Int32) Appends a pattern that matches a character that is neither left nor right square bracket specified number of times.

NotSquareBracket()


Appends a pattern that matches a character that is neither left nor right square bracket.

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

Returns

CharGroup

NotSquareBracket(Int32)


Appends a pattern that matches a character that is neither left nor right square bracket specified number of times.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.