forlang.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Character Expressions
                                             Up Contents Index Back
─────Character Expressions──────────────────────────────────────────────────
 
     Character expressions produce values of type character. Basic
     operands used in character expressions are:
 
          ■ Character constants or variables
          ■ Character array elements
          ■ Character function references
          ■ Character substrings
 
     The concatenation operator (//) is the only character operator.
     It produces a character string consisting of the value of the first
     operator concatenated on the right with the value of the second
     operator. The length is the sum of the lengths of the two operands.
 
     Example:
 
     'AB ' // 'CDE' evaluates to 'AB CDE'
                                    -♦-