Skip to content

Latest commit

 

History

History
79 lines (46 loc) · 2.55 KB

File metadata and controls

79 lines (46 loc) · 2.55 KB

Pattern.SurroundQuoteMarks Method

Home

Containing Type: Pattern

Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll

Overloads

Method Summary
SurroundQuoteMarks() Appends a pattern that matches two quotation marks, allowing zero or more characters that are not a quotation mark between the quotation marks.
SurroundQuoteMarks(Object) Appends a pattern that matches specified pattern surrounded with quotation marks.
SurroundQuoteMarks(Object[]) Appends a pattern that matches specified content surrounded with quotation marks.

SurroundQuoteMarks()


Appends a pattern that matches two quotation marks, allowing zero or more characters that are not a quotation mark between the quotation marks.

public Pihrtsoft.Text.RegularExpressions.Linq.Pattern SurroundQuoteMarks()

Returns

Pattern

SurroundQuoteMarks(Object)


Appends a pattern that matches specified pattern surrounded with quotation marks.

public Pihrtsoft.Text.RegularExpressions.Linq.Pattern SurroundQuoteMarks(object content)

Parameters

contentObject

The content to be matched.

Returns

Pattern

Exceptions

ArgumentNullException

content is null.

SurroundQuoteMarks(Object[])


Appends a pattern that matches specified content surrounded with quotation marks.

public Pihrtsoft.Text.RegularExpressions.Linq.Pattern SurroundQuoteMarks(params object[] content)

Parameters

contentObject[]

An object array that contains zero or more patterns any one of which has to be matched.

Returns

Pattern

Exceptions

ArgumentNullException

content is null.