Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - - string concatenation with trim (binary) http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 -                   String concatenation with trim (binary)
------------------------------------------------------------------------------
 Syntax
   cString1 - cString2

 Arguments
   cString1 is a character string to which cString2 is appended.

   cString2 is a character string to concatenate to the end of cString1.

 Description
   The - operator trims any trailing space from the left side string and
   concatenates the right side string.

 Example
   #define EXAMPLE_OPERATOR
   #include example.hdr

   proc Test_920
   ? "Hello " - "world"
   ? "Hello " + "world"
   endproc

   proc main
   Test_920()
   endproc

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson