gpt4 book ai didi

ruby - 在 Ruby gsub block (正则表达式)中使用命名捕获组

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

我正在尝试在 Ruby 的 block 内使用命名捕获组。 $1 仍然有效,但我想使用我提供的名称来引用它。

"foo /(bar)".gsub(/(?<my_word> \(.*?\) )/x) do |match|
puts "$1 = #{$1} and $my_word = #{$my_word}"
end

预期:$1 = (bar) and $my_word = (bar)

最佳答案

你在找

"foo /(bar)".gsub(/(?<my_word> \(.*?\) )/x) do |match|
puts "$1 = #{$1} and $my_word = #{$~[:my_word]}"
end

关于ruby - 在 Ruby gsub block (正则表达式)中使用命名捕获组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16579223/

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