作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
-6ren">
我正在按字符拆分字符串,并希望修剪生成的拆分中的所有项目。我希望以下内容可以作为 String.trim/1
工作存在:
iex> "My delimited ! string of doom" |> String.split("!") |> Enum.map(String.trim)
** (UndefinedFunctionError) function String.trim/0 is undefined or private. Did you mean one of:
* trim/1
* trim/2
(elixir) String.trim()
我收到一个UndefinedFunctionError
,表明函数String.trim/0
不存在。我想要的可以通过传递给 Enum.map
的匿名函数轻松完成:
iex> "My delimited ! string of doom" |> String.split("!") |> Enum.map(fn (word) -> String.trim(word) end)
["My delimited", "string of doom"]
是Enum.map/2
需要匿名函数作为第二个参数吗?是否可以将我想要的函数作为参数给出?
最佳答案
您需要使用&运算符
。 Capture operator
试试这个:
iex()> "my delimited ! string of doom" |> String.split("!") |> Enum.map(&String.trim/1)
["my delimited", "string of doom"]
关于elixir - 如何将任何给定函数映射到值列表上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39461665/
我是一名优秀的程序员,十分优秀!