8
x = r"abc"
y = r"def"
z = join([x,y], "|")

z # => r"r\"abc\"|r\"def\""

有没有办法join(并且通常操纵)Regex只处理正则表达式内容(即不将r修饰符视为内容的一部分)。所需的输出z是:

z # => r"abc|def"
4

1 回答 1

6
macro p_str(s) s end
x = p"abc"
y = p"def"
z = Regex(join([x,y], "|"))

r"quote" 运算符实际上会为您编译一个正则表达式,这需要时间。如果你只有正则表达式的一部分,你想用它来构建一个更大的表达式,那么你应该使用“正则引号”来存储这些部分。

但是你问的 r"quote" 与 "regular quotes" 的粗略转义规则呢?如果您想要粗略的 r"quote" 规则但不立即编译正则表达式,那么您可以使用如下宏:

macro p_str(s) s end

现在你有一个 p"quote" 像 r"quote" 一样转义,但只返回一个字符串。

不要跑题,但你可以定义一堆引号来绕过棘手的字母。这里有一些方便的:

                                       # "baked\nescape"    -> baked\nescape
macro p_mstr(s) s end                  # p"""raw\nescape""" -> raw\\nescape
macro dq_str(s) "\"" * s * "\"" end    # dq"with quotes"    -> "with quotes"
macro sq_str(s) "'" * s * "'" end      # sq"with quotes"    -> 'with quotes'
macro s_mstr(s) strip(lstrip(s))  end  # s"""  "stripme" """-> "stripme"

完成片段制作后,您可以加入并制作如下正则表达式:

myre = Regex(join([x, y], "|"))

就像你想的那样。

如果您想了解有关对象具有哪些成员的更多信息(例如 Regex.pattern),请尝试:

julia> dump(r"pat")
Regex 
  pattern: ASCIIString "pat"
  options: Uint32 33564672
  regex: Array(Uint8,(61,)) [0x45,0x52,0x43,0x50,0x3d,0x00,0x00,0x00,0x00,0x28  …   0x1d,0x70,0x1d,0x61,0x1d,0x74,0x72,0x00,0x09,0x00]
于 2013-12-10T00:06:42.840 回答