Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.96 KB

File metadata and controls

53 lines (31 loc) · 1.96 KB

Pattern.AlphanumericUpper Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
AlphanumericUpper() Appends a pattern that matches an upper-case alphanumeric character. Alphanumeric character is a latin alphabet upper-case letter or an arabic digit.
AlphanumericUpper(Int32) Appends a pattern that matches a specified number of upper-case alphanumeric characters. Alphanumeric character is a latin alphabet upper-case letter or an arabic digit.

AlphanumericUpper()


Appends a pattern that matches an upper-case alphanumeric character. Alphanumeric character is a latin alphabet upper-case letter or an arabic digit.

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

Returns

QuantifiablePattern

AlphanumericUpper(Int32)


Appends a pattern that matches a specified number of upper-case alphanumeric characters. Alphanumeric character is a latin alphabet upper-case letter or an arabic digit.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.