Object Reference : Object View and Procedure Reference : Svector
  
 
svector
Declare a string vector object.
The svector command declares a string vector object.
Syntax
svector(n) stringvector_name
The svector keyword should be followed by a valid name. n is an optional length for the vector. If n is not provided, the resulting svector will be one element long.
Examples
svector alphavec
declares a string vector object named ALPHAVEC containing no text.
svector(20) alphavec
declares a 20 element svector.
Cross-references
See “Strings” and “String Vectors” for a discussion of strings and string vectors.