[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
     NAME: ConCat

     USE: Function to combine two or more strings.  The same effect
          can be obtained by using the + operator.  If the combined
          string is greater then 255 character is will be truncated
          to 255 characters.

     DEPENDENCY: None

     SYNTAX: ConCat(String1, String2, 'String number 3');
             ConCat(String1, String2, ... StringN);

     RESULT: String

     EXAMPLE:   Program TestConcat;
                Var
                   StringVar  : String;

                Begin
                   StringVar := '';
                   StringVar := 'This is a test';
                   Writeln(StringVar);
                   StringVar := ConCat(StringVar,' of how');
                   Writeln(StringVar);
                   StringVar := StringVar + ' use concat';
                   Writeln(StringVar);
                end;

See Also: Copy Delete Insert Length Pos
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson