Syntax
set position = aString.findString(stringToFind)
set position = findString(LITERAL, stringToFind)
SemanticsReturns the position index of findString() or NULL if the string was not found. The findString() operation is case sensitive.
SubstitutablesaString, stringToFind Can be any variable or object attribute having the type String.  
 LITERAL String literal.
Examples
set position = stringSet.s1.findString("x");
  • No labels