Validity: Rule, Task
String concatenation operator, can be used only with variables of type string.
Syntax |
valueA # valueB |
---|---|
valueA |
First string |
valueB |
Second string |
Result |
The concatenation between the two strings |
Examples:
; In both cases the string register sr(1) will contain the string: "it is eight o'clock" sr(1) = "it is" # " eight o'clock" sr(1) = "it is" # " " # "eight o'clock" |