/
String Functions(3.0)

String Functions(3.0)

Warning!

The String functions cannot operate on null arguments.


String Concatenation

Strings are concatenated with the arithmetic '+' operator:

string str1 = string str2 + string str3 ...

strEndsWith

Returns true if str ends with substr , otherwise false.

boolean strEndsWith
 ( string  str , 
 string  substr )
ParameterDescription

str

String to examine

substr

String to look for

Returns

true or false


strEqualsIgnoreCase

Compares two strings and returns true if they are equal, and false if they are not. This comparison ignores case.