Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WDESIGNER and version 24.0
Syntax
Code Block
languagenone
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
Code Block
languagenone
set position = stringSet.s1.findString("x");