Erlang - 字符串



该方法返回字符串中子字符串的索引位置。

语法

str(str1,str2)

参数

  • str1 − 需要搜索的字符串。

  • Chr1 − 需要在字符串中搜索的字符。

返回值

返回字符在字符串中的索引位置。

例如

-module(helloworld). 
-import(string,[str/2]). 
-export([start/0]). 

start() -> 
Str1 = "hello World", 
Index1 = str(Str1,"hello"), 
io:fwrite("~p~n",[Index1]).

输出

运行以上程序后,将得到以下结果。

1
strings.htm
广告