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”
相關用法
- erlang len用法及代碼示例
- erlang equal用法及代碼示例
- erlang chr用法及代碼示例
- erlang str用法及代碼示例
- erlang substr用法及代碼示例
- erlang left用法及代碼示例
注:本文由純淨天空篩選整理自 erlang concat。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。