You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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