本文整理自网络,侵删。
Concat
功能说明:连接两个或多个字符串为一个字符串。
参考实例:
var
S1, S2: String;
begin
S1 := Concat('A', 'B'); // 连接两个字符串,S1变量等于AB。
S2 := Concat('Borland', ' Delphi', ' 7.0'); // 连接三个字符,S2变量等于Borland Delphi 7.0。
end;
相关阅读 >>
Delphi 分解时间 �cdecodedate、decodetime … decodedatetime …
Delphi recodedatetime、recodedate、recodetime、recodeyear ... 修改时间
Delphi firedac在后台线程中从mssql server检索记录的方法
Delphi xe7开发的获取网页中字符串的编码是否是utf8
更多相关阅读请进入《Delphi》频道 >>