Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.48 KB

File metadata and controls

53 lines (31 loc) · 1.48 KB

Pattern.VerticalBar Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
VerticalBar() Appends a pattern that matches a vertical bar.
VerticalBar(Int32) Appends a pattern that matches a specified number of vertical bars.

VerticalBar()


Appends a pattern that matches a vertical bar.

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

Returns

QuantifiablePattern

VerticalBar(Int32)


Appends a pattern that matches a specified number of vertical bars.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.