meta data for this page
  •  

ibec_Concat

Concatenates two or more strings into one.

Description

Use ibec_Concat to concatenate an arbitrary number of strings. Each parameter is a string-type expression. The result is the concatenation of all the string parameters.

Using the plus (+) operator has the same effect on two strings as using the ibec_Concat function:

 S := 'ABC' + 'DEF';

Tip: The plus operator is faster than ibec_Concat.

Syntax

  function ibec_Concat(s1 [, s2,..., sn]: varchar): varchar;

Examples