Assignment Statements
$ vbl = string_expression
Examples:
$ A = “String 1 “ + “String 2”
$ B = A - “String “ - “String “
$ C = ‘A’
Maximum string length = 255 bytes
Notes:
Here are some examples of string operations.
The first operation is a string concatenation.
The second operation is string reduction.
The third operation is a symbol substitution.
What’s happening in statement three?