该方法返回字符串中子字符串的索引位置。
str - 语法
str(str1,str2)
str1 - 这是需要搜索的字符串。
Chr1 - 这是需要在字符串中搜索的字符。
str - 返回值
返回字符串中字符的索引位置。
-module(helloLearnfk). -import(string,[str/2]). -export([start/0]).start() -> Str1="hello Learnfk", Index1=str(Str1,"hello"), io:fwrite("
pn",[Index1]).
当我们运行上述程序时,我们将得到以下输出。
1