Dataset search: Difference between revisions
Jump to navigation
Jump to search
imported>Scott (Created page with "===Purpose=== Search for given term in a dso field, mode, and set. ===Synopsis=== :out = search(dso_in,fieldname,fieldmode,fieldset,searchterm) ===Description=== Return 'out' as ...") |
imported>Scott |
||
Line 13: | Line 13: | ||
: "" = exact match. | : "" = exact match. | ||
: re: = regular expression. | : re: = regular expression. | ||
===See Also=== | ===See Also=== | ||
[[dataset_sortby]], [[dataset_sortcols]], [[dataset_sortrows]] | [[dataset_sortby]], [[dataset_sortcols]], [[dataset_sortrows]] |
Revision as of 04:42, 14 August 2012
Purpose
Search for given term in a dso field, mode, and set.
Synopsis
- out = search(dso_in,fieldname,fieldmode,fieldset,searchterm)
Description
Return 'out' as index of matches. Searches are case insensitive (use "" for case sensitive).
NOTE: If field is numeric then 'searchterm' will be interpreted as numeric expression. First characters can be relational operators.
Search Criteria (TEXT):
- * = wildcard (similar to SQL wildcard, not strict RE)
- "" = exact match.
- re: = regular expression.