Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.49 KB

File metadata and controls

53 lines (31 loc) · 1.49 KB

Pattern.LatinLetter Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
LatinLetter() Appends a pattern that matches a latin alphabet letter.
LatinLetter(Int32) Appends a pattern that matches a specified number of latin alphabet letters.

LatinLetter()


Appends a pattern that matches a latin alphabet letter.

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

Returns

CharGroup

LatinLetter(Int32)


Appends a pattern that matches a specified number of latin alphabet letters.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.