Elixir 1.0,Windows 7 x64上的Erlang 17.3。爲什麼我不能從字符串中去掉這個字符?
我鍵入此代碼:
l = "[9,0]"
s = String.strip(l,"[")
而且我得到這個:
**(FunctionClauseError)在String.lstrip/2 (酏劑)的lib /字符串沒有功能的語句匹配。例如:527:String.lstrip( 「[9,0]」, 「[」) (酏劑)的lib/string.ex:564:String.strip/2
我缺少什麼?
我也試過s = String.strip(l,",")
和同樣的錯誤。還試過s = String.strip(l,'[')
同樣的錯誤。
我錯過了什麼?
String.strip/2 API已被棄用。 信息:https://stackoverflow.com/a/38073411/3142192 – 2017-06-02 05:46:53