該方法合并2個(gè)字符串并返回串聯(lián)的字符串。
concat(str1,str2)
str1,str2 ?需要連接的2個(gè)字符串。
返回2個(gè)字符串的串聯(lián)。
-module(helloworld). -import(string,[concat/2]). -export([start/0]). start() -> Str1 = "This is a ", Str2 = "string", Str3 = concat(Str1,Str2), io:fwrite("~p~n",[Str3]).
當(dāng)我們運(yùn)行上面的程序時(shí),我們將得到以下結(jié)果。
“This is a string”