检查字符串是否包含char或Erlang

时间:2017-03-23 12:58:08

标签: string erlang

我想检查字符串中是否包含特定的字符字母数字

EG。

Line = "23423+e324AB".

最佳解决方案将找出字符串' Line '包含' + '符号??

谢谢:)

1 个答案:

答案 0 :(得分:1)

可能最好的是lists:member(hd("+"),"fff+fdd")

时间执行紧张

9> timer:tc(fun() -> lists:member(hd("+"),"fff+fdd") end).
{11,true}
10> timer:tc(fun() -> string:str("ff+ggg", "+") > 0 end).
{1965,true}