在elixir sigil中逃脱闭括号

问题描述 投票:0回答:2

我想要一个自定义的sigil,这样我每行可以有一个元素。

这是我的代码

def sigil_l(text,[]), do: String.split(text,"\n")

这适用于

~l(Clash of Titans
   The day after Tomorrow
   The Transporter
 )

这失败了

~l(The man from Earth (2007)
   Gone Girl (2014)
   )

请注意上面的括号

这是错误消息

"{" starting at line 38 is missing terminator "}". Unexpected token: )
(elixir) lib/kernel/parallel_compiler.ex:97: anonymous fn/4 in Kernel.ParallelCompiler.spawn_compilers/8

预期的结果是

["The man from Earth (2007)",
"Gone Girl (2014)"]

需要更改哪些代码。我是否还需要在输入中添加任何字符并处理sigil defination?

更新

@AbM提供的解决方案是正确的。我在elixir版本1.0.4上,所以它不起作用。它适用于1.1.x.

~l(The man from Earth (2007\)
   Gone Girl (2014\)
   )
elixir sigils
2个回答
5
投票

你应该用\)转义右括号:

~l(The man from Earth (2007\)
   Gone Girl (2014\)
)

这是我的脚本和iex输出:

defmodule SigilL do

  def sigil_l(text,[]), do: String.split(text,"\n")

end

enter image description here


0
投票

还有各种各样的符号分隔符。所以代替:

~s(My funky "string(\)")

您还可以使用:

~s|My funky "string()"|

这避免了使用正斜杠。显然,这意味着你必须找到另一个分隔符:

~s|My funky "string(|)"|

但至少有一个可用的解决方案。 https://elixirschool.com/en/lessons/basics/sigils/

© www.soinside.com 2019 - 2024. All rights reserved.