ParseQueryTWhereMatches Method (String, Regex, 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,
	Regex regex,
	string modifiers
)

Parameters

key
Type: SystemString
The key that the string to match is stored in.
regex
Type: System.Text.RegularExpressionsRegex
The regular expression pattern to match. The Regex must have the ECMAScript options flag set.
modifiers
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