Example: String values in expressions
These are the examples of string values in expressions.
Name | Description | Example: If tag1 = "SOME" and tag2 + "THING", then: |
String | A string literal begins with a double-quote character and ends with a double-quote character. Anything between the two double-quotes is part of the string literal. You can use strings as operands with the plus (+) operator and with relational operators. The + operator joins string operands. String tags and string literals behave the same way. Keep the following in mind when using string tags with the relational operators:
| tag1+tag2 returns "SOMETHING" |
Provide Feedback