|
4.20.2 string expressions
A string expression is:
-
a sequence of characters between two unescaped quotes (
" )
-
an identifier of type string
-
a function returning string
-
a substring (using the bracket operator)
-
a type cast to string (see string type cast)
-
string expressions combined by the operation
+ .
Example:
See Type conversion and casting
|