string <assign> {,<assign> ... }
Declare (and optionally assign) one or more string variables.
<assign>
<ident> { = <value> }
<ident>
The name of the identifier.
<value>
A string expression.
None
If no value is given, the identifier is initialized to an empty string.
String identifier values can be placed in-line within a command line via the following phrase: ^(<string>).
New string initialized to null.
string s
Two new identifiers, initialized.
string s1 = 'now', s2 = 'then'
String array.
string bits[3] = < s1, 'and', s2 >
In-line usage.
string fname = '/usr/tmp/junk.dat' delete ^(fname)