ParseQueryTWhereMatches Method (String, String, String)Parse
Adds a regular expression constraint for finding string values that match the provided regular expression. This may be slow for large data sets.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public ParseQuery<T> WhereMatches(
	string key,
	string pattern,
	string modifiers = null
)

Parameters

key
Type: SystemString
The key that the string to match is stored in.
pattern
Type: SystemString
The PCRE regular expression pattern to match.
modifiers (Optional)
Type: SystemString
Any of the following supported PCRE modifiers: - Case insensitive search Search across multiple lines of input

Return Value

Type: ParseQueryT
A new query with the additional constraint.
See Also

Reference