gpt4 book ai didi

ruby - 当使用 $1-$9 正则表达式形式时,为什么在一个 nil 上调用 gsub(...)?

转载 作者:数据小太阳 更新时间:2023-10-29 08:21:38 26 4
gpt4 key购买 nike

首先,一个工作示例:

string = "foo-bar-25-baz"
if string =~ /(.+)-(10|25)(?:-(baz))?/
puts $1
puts $2
puts $3
end

如预期的那样,这会在三行中生成“foo-bar”、“25”和“baz”。但是如果我们这样做:

string = "foo-bar-25-baz"
if string =~ /(.+)-(10|25)(?:-(baz))?/
puts $1.gsub('-', ' ') # Here be the problem
puts $2 # nil
puts $3 # nil
end

$2$3 的值现在为零。我必须 puts $2 and puts $3 and then $1.gsub(...),它会工作。据我所知,这仅适用于 gsubgsub!

这会导致同样的问题:

string = "foo-bar-25-baz"
if string =~ /(.+)-(10|25)(?:-(baz))?/
puts $3.gsub('hard', 'h')
puts $1 # nil
puts $2 # nil
end

我花了大约 15 分钟调试这个,我想知道为什么。

最佳答案

gsub很可能会重新分配这些变量(就像几乎所有其他使用正则表达式引擎的函数一样)。如需调用gsub在使用所有原始匹配结果之前,先将它们存储到一个局部变量中,例如 match_results = [$1, $2, $3] .

关于ruby - 当使用 $1-$9 正则表达式形式时,为什么在一个 nil 上调用 gsub(...)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3586709/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com