Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.39 KB

File metadata and controls

53 lines (31 loc) · 1.39 KB

Pattern.Comma Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
Comma() Appends a pattern that matches a comma.
Comma(Int32) Appends a pattern that matches a specified number of commas.

Comma()


Appends a pattern that matches a comma.

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

Returns

QuantifiablePattern

Comma(Int32)


Appends a pattern that matches a specified number of commas.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.