Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.81 KB

File metadata and controls

53 lines (31 loc) · 1.81 KB

Pattern.LetterUpper Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
LetterUpper() Appends a pattern that matches a character from GeneralCategory.LetterUppercase.
LetterUpper(Int32) Appends a pattern that matches a specified number of letters from GeneralCategory.LetterUppercase.

LetterUpper()


Appends a pattern that matches a character from GeneralCategory.LetterUppercase.

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

Returns

QuantifiablePattern

LetterUpper(Int32)


Appends a pattern that matches a specified number of letters from GeneralCategory.LetterUppercase.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.