ibec_Concat

Concatenates two or more strings into one.

Syntax

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

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.

Examples

See also:
ibec_Copy
ibec_StringReplace

back to top of page
<< ibec_AnsiUpperCase | IBEBlock | ibec_QuotedStr >>