Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.92 KB

File metadata and controls

53 lines (31 loc) · 1.92 KB

Pattern.NotAlphanumeric Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
NotAlphanumeric() Appends a pattern that matches a character that is not an alphanumeric character. Alphanumeric character is a latin alphabet letter or an arabic digit.
NotAlphanumeric(Int32) Appends a pattern that matches a character that is not an alphanumeric character specified number of times. Alphanumeric character is a latin alphabet letter or an arabic digit.

NotAlphanumeric()


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

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

Returns

CharGroup

NotAlphanumeric(Int32)


Appends a pattern that matches a character that is not an alphanumeric character specified number of times. Alphanumeric character is a latin alphabet letter or an arabic digit.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.