Operator Type:
Operator Scope of Action:
Operator Purpose:
Operator First Added:
Operator Altered:
Function [other Function type actions]
Item [operators of similar scope]
Query Boolean [other Query Boolean operators]
Baseline
String.icontains("pattern")
This operator tests whether pattern matches the referenced string attribute or matches a whole discrete value string within a the referenced list/set attribute value. Matches are always case-insensitive, unlike String/List.contains(). The match gives a Boolean result.
pattern is one of:
- an action code expression (which includes just referencing a single attribute name')
- a quoted string; quoted strings may be either:
- a literal string (i.e. actual text)
- a regular expression.
Important: do not omit the enclosing quotes for literal strings or regex. If omitted, Tinderbox will try to evaluate the string as an expression. Doing this may result in the expected result but this is actually a false positive. So, remember to enclose your regex or literals in quotes.
$MyString.icontains("pattern")
For example:
$MyString.icontains(pattern)
is true if $MyString matches pattern. This is the equivalent to the older form of AttributeName(pattern) which is now deprecated. Apart from anything else, this newer syntax should remove the confusion over whether/when to use the $ prefix with attribute names in queries. Other more complex usage:
$MyString.icontains($MyMatchText)
$MyString.icontains($MyString(agent))
$MyString(parent).icontains("Tuesday")
"Any day like Saturday is good".icontains($MyDay)
"Any day like Saturday is good".icontains("Saturday")
Getting the offset of the (first) pattern match
If the regular expression pattern is found the function returns the match offset+1, where offset is the distance from the start of the string to the start of the matched pattern. If there is more than one match, the offset of the first match is returned. Formerly, .contains() returned true if the pattern was found. The '+1' modifier ensures that a match at position zero return a number higher than zero which would otherwise coerce to false. Since 1+offset is always true, no changes are required in existing documents but the function also now gives usable offset information. Thus, if $MyString is "abcdefgehEi":
$MyNumber = $MyString.icontains("e");
returns 5
.
$MyNumber = $MyString.icontains("E");
returns 5
.
$MyNumber = $MyString.icontains("eh");
returns 8
.
Testing "does not contain"
Use a ! prefix to the query argument:
!$MyString.icontains("Tuesday")
Use of parentheses after the !, around the query, can assist Tinderbox's parsing:
!($MyString.icontains("Tuesday"))
Using back-references
In an agent query or if() conditions the function can return back-references to matches of (sub-)strings.
Dealing with inline quote characters
Because pattern is parsed for regular expressions, it may be possible to use the '\xNN' form described here to work around the lack of escaping from single double quotes within strings.