7.5

Table Of Contents
String Operator
"+ (operator & function)" (page 387)
+ (operator & function)
Either concatenates two or more strings or adds two numerical expressions, depending on its context.
This description details how to use it to concatenate two strings. See "Add (function)" (page 551) for help using it to add two
numerical expressions.
Syntax
string1 + string2 + ... string
Arguments
string1, string2,...
String values.
Code Sample Example
The following code sample concatenates five strings into a single string that contains the first and last name of a customer.
Code Sample
show('First Name: ' + @(2,12,36) + ' ' + 'Last Name: ' + @(3,12,36))
Boolean Operator Functions
And (Boolean operator function)
Returns true if both specified expressions are true, otherwise it is false.
Syntax
and( expression1, expression2 ) Boolean value
expression1 and expression2 Boolean value
Arguments
expression1, expression2
Boolean values.
Code Sample Examples
These examples illustrate the possible values for AND.
and(true, false) %Returns false
and(false, true) %Returns false
©2010 Objectif Lune Inc - 387 -