[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Append one string to another.
Source position: system.fpd line 36
function Concat( |
const S1: string; |
const S2: string; |
const S3: string; |
const Sn: string |
):string; |
Concat concatenates the strings S1,S2 etc. to one long string. The resulting string is truncated at a length of 255 bytes. The same operation can be performed with the + operation.
None.
|
Copy part of a string. |
|
|
Delete part of a string. |
|
|
Insert one string in another. |
|
|
Search for substring in a string. |
|
|
Returns length of a string or array. |
Program Example10; { Program to demonstrate the Concat function. } Var S : String; begin S:=Concat('This can be done',' Easier ','with the + operator !'); end.