Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.42 KB

File metadata and controls

53 lines (31 loc) · 1.42 KB

Pattern.Percent Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
Percent() Appends a pattern that matches a percent.
Percent(Int32) Appends a pattern that matches a specified number of percents.

Percent()


Appends a pattern that matches a percent.

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

Returns

QuantifiablePattern

Percent(Int32)


Appends a pattern that matches a specified number of percents.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.