Erlang-concat



该方法连接 2 个字符串并返回连接后的字符串。

语法

concat(str1,str2)

参数

  • str1,str2 − 需要连接的 2 个字符串。

返回值

返回 2 个字符串的连接。

例如

-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]).

输出

当我们运行上述程序时,将获得以下结果。

“This is a string”
strings.htm
广告