Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.43 KB

File metadata and controls

53 lines (31 loc) · 1.43 KB

Pattern.Linefeed Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
Linefeed() Appends a pattern that matches a linefeed.
Linefeed(Int32) Appends a pattern that matches a specified number of linefeeds.

Linefeed()


Appends a pattern that matches a linefeed.

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

Returns

QuantifiablePattern

Linefeed(Int32)


Appends a pattern that matches a specified number of linefeeds.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.