Strings may either be literal (fully defined in the script) or may come from values stored in bookmark attributes. Both are treated the same way, except that bookmark attributes are not enclosed in quotes.
Strings are enclosed in double quotes (“).
To use the double quote within a string use it twice (“”).
Strings (including bookmark data) are automatically concatenated. E.g. "A" "B"
is output as "AB"
.
Examples:
Basic:
"Hello World"
is output as Hello World
Concatenation:
"String1" ":" "String2"
is output as String1:String2
Integration with bookmark attributes
If the bmUsername
attribute is JackJones then
"Username is " bmUsername
becomes Username is JackJones