Skip to content

Commit

Permalink
Item9826: in documentation for =~ link to RegularExpressions so the u…
Browse files Browse the repository at this point in the history
…ser has some idea what it is (and its limitations)

git-svn-id: http://svn.foswiki.org/trunk@9602 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
SvenDowideit authored and SvenDowideit committed Oct 18, 2010
1 parent f1c0b7e commit c2d8abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/data/System/QuerySearch.txt
Expand Up @@ -107,7 +107,7 @@ Field specifiers and constants are combined using _operators_ to create queries.
| <code>=</code> | Left-hand side (LHS) exactly matches the value on the Right-hand side (RHS). Numbers and strings can be compared. |
| <code>!=</code> | Inverse of <code>=</code>. |
| =~= | wildcard match ('*' will match any number of characters, '?' will match any single character e.g. "PersonForm.Surname ~ '*Smit?'") Note: Surname ~ 'Smith' is the same as Surname = 'Smith' |
| <code>=~</code> | regular expression match |
| <code>=~</code> | regular expression match, see RegularExpressions for details. |
| <code>&lt;</code> | LHS is less than RHS. If both sides are numbers, the order is numeric. Otherwise it is lexical (applies to all comparison operators) |
| <code>&gt;</code> | greater than |
| <code>&lt;=</code> | less than or equal to |
Expand Down

0 comments on commit c2d8abb

Please sign in to comment.