Programmer Guide/General Descriptions/Find Expressions: Difference between revisions
From STX Wiki
Jump to navigationJump to search
(Created page with "{{DISPLAYTITLE:{{SUBPAGENAME}}}} {| |- |<var>cexpr</var> |Description |- |fieldid:cond |Check if a value is (not) assigned to a field.{| |- |fieldid |name or index of a define...") |
No edit summary |
||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
{| | {|style="margin-left:0.5em;" | ||
|- | |- | ||
|<var>cexpr</var> | |<var>cexpr</var> |
Revision as of 14:42, 28 April 2014
cexpr | Description |
fieldid:cond | |
fieldid | name or index of a defined field |
cond | = (is assigned), ! (is not assigned) |
fieldid:cond:value | |
fieldid | name or index of a numerical field (0 for simple tables)
|
cond | < , <= , == , != , >= or >
|
value | a number, or numerical expression or string. |
fieldid:cond:mask | ||
fieldid | name or index of a string field (0 for simple tables)
| |
cond | =I | match, ignore case |
!I | do not match, ignore case | |
=R | match respect case | |
!R | (do not match, respect case) | |
mask | match string, may contain wildcard characters. if field is of type name, mask must be a valid name |