Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.95 KB

File metadata and controls

53 lines (31 loc) · 1.95 KB

Pattern.NotLetterLower Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
NotLetterLower() Appends a pattern that matches a character that is not a character from GeneralCategory.LetterLowercase.
NotLetterLower(Int32) Appends a pattern that matches a character that is not a character from GeneralCategory.LetterLowercase specified number of times.

NotLetterLower()


Appends a pattern that matches a character that is not a character from GeneralCategory.LetterLowercase.

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

Returns

QuantifiablePattern

NotLetterLower(Int32)


Appends a pattern that matches a character that is not a character from GeneralCategory.LetterLowercase specified number of times.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.