Breadcrumbs

findString() Operation

Syntax

set position = aString.findString(stringToFind)
set position = findString(LITERAL, stringToFind)

Semantics

Returns the position index of findString() or NULL if the string was not found. The findString() operation is case sensitive.

Substitutables

aString, stringToFind

Can be any variable or object attribute having the type String.  

LITERAL

String literal.

Examples

set position = stringSet.s1.findString("x");
📗