Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Basic

Exact numeric match:

Code Block
{words}.Matches(100)
{words}.Matches(100, "=")    // "=" is the default operator
{words}.Matches(100, "!=")   // Different from 100

Range match:

Code Block
{words}.Matches(100, ">=", 500, "<=")

The operators can be any of: >, <, >=, <=, =, !=

 

Any of

This construct matches if the field matches any one of the pipe separated values:

Code Block
{status}.Matches("1|,2|,5", "anyof")
Null values

Find null values with fields that are nullable:

 

Code Block
{words}.Matches(null)
{words}.Matches(null, "!=")

...