Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
function Concat(S1 [, S2, S3, ...]: string): string;
Concatenates two or more strings into a single string.
Using the plus (+) operator has the same effect on two or more strings as using the Concat function.
var s, ab : string;
ab:='About ';
s:=Concat(ab, 'DELPHI', ' Programming');
//s=About DELPHI Programming;
|
String Types in Delphi
Understanding and managing string data types in Delphi's Object Pascal. Learn about differences between Short, Long, Wide and null-terminated strings.
Lenght,
Insert,
Copy,
Delete,
Pos,
|
Free Delphi code snippet inside every Delphi Newsletter! |
|
|
|
Got some code to share? Got a question? Need some help? |
|
|