我该如何在Erlang中进行正则表达式匹配?
我所知道的是:
f(“AAPL”++ Inputstring)-> true。
我需要匹配的线
“AAPL,2010年5月7日15:58,21.34,21.36,21.34,21.35,525064\n”
在Perl正则表达式中:^ AAPL *(或类似名称)
在二郎?
最佳答案
使用 re
模块,例如:
...
String = "AAPL,07-May-2010 15:58,21.34,21.36,21.34,21.35,525064\n",
RegExp = "^AAPL,*",
case re:run(String, RegExp) of
{match, Captured} -> ... ;
nomatch -> ...
end,
...
关于regex - Erlang中的字符串正则表达式匹配,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2828160/