|  |  | String append. Returns the result of concatenating two strings.
 Syntax
 
   strapp (source tail)
 Formal Declaration
 
   strapp:str (source:str tail:str)
 Parameters
 
  sourceThe string to which tail is appended.tailThe string to append to the tail of source. Examples
 
   $nmdebug > var stuff "Cream"
   $nmdebug > wl strapp("Ice ", stuff)
   Ice Cream
Append the string contained in the variable stuff to the string
"Ice".
   $nmdebug > = strapp("Hello, ", strapp("How", " Are You?") )
   "Hello, How Are You?"
Print the result of concatenating the string literals.Limitations, RestrictionsIf the resultant string is larger than the maximum supported
string length (see the STRMAX function), it is truncated.
 
 
 |