Containing Type: Pattern
Assembly: Pihrtsoft.Text.RegularExpressions.Linq.dll
Method | Summary |
---|---|
Maybe(Object) | Appends a pattern that matches specified content zero or one time. |
Maybe(Object, Object[]) | Appends a pattern that matches any one specified element zero or one time. |
Appends a pattern that matches specified content zero or one time.
public Pihrtsoft.Text.RegularExpressions.Linq.QuantifiedGroup Maybe(object content)
content Object
The content to be matched.
content is null
.
Appends a pattern that matches any one specified element zero or one time.
public Pihrtsoft.Text.RegularExpressions.Linq.QuantifiedGroup Maybe(object first, params object[] others)
first Object
First element of a sequence that contains patterns any one of which has to be matched.
others Object[]
Other elements of a sequence that contains patterns any one of which has to be matched.
first is null
.