Next:
String functions
Up:
String constants, string variables,
Previous:
Substrings
Index
String operators
Three binary operators require string operands: the string concatenation operator
"
.
"
, the string equality operator
"
eq
"
and the string inequality operator
"
ne
"
. The following example will print TRUE.
if ("A"."B" eq "AB") print "TRUE"