-
Notifications
You must be signed in to change notification settings - Fork 0
String Functions
Magnus Karlsson edited this page Mar 25, 2015
·
2 revisions
The strings are single quoted.
len ( string x )
substr ( string x , int from , int to )
charAt ( string x , int index )
compareTo ( string x , string y)
compareToIgnoreCase ( string x , string y)
equals ( string x , string y)
concat ( string x , string y )
contains ( string x , string y )
endsWith ( string x , character x )
replace ( string x , string toBeReplaced , string replaceWith )
startsWith ( string x , string searchString )
toUpperCase ( string x )
toLowerCase ( string x )
indexOf ( string x , string index )
lastIndexOf ( string x , string index )
numberFormat (string formatStr , double valueToFormat)
matches ( string stringToBeMatched , string regex )
like ( string stringToBeSearchedIn , string likeSearch )