Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 1.63 KB

File metadata and controls

53 lines (31 loc) · 1.63 KB

Pattern.NotQuestionMark Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
NotQuestionMark() Appends a pattern that matches a character that is not a question mark.
NotQuestionMark(Int32) Appends a pattern that matches a specified number of characters that are not a question mark.

NotQuestionMark()


Appends a pattern that matches a character that is not a question mark.

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

Returns

QuantifiablePattern

NotQuestionMark(Int32)


Appends a pattern that matches a specified number of characters that are not a question mark.

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

Parameters

exactCountInt32

A number of times a character has to be matched.

Returns

QuantifiedGroup

Exceptions

ArgumentOutOfRangeException

exactCount is less than zero.