gpt4 book ai didi

ruby - 将字符串插入正则表达式

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

我需要将一个字符串的值替换为我在 Ruby 中的正则表达式。是否有捷径可寻?例如:

foo = "0.0.0.0"
goo = "here is some other stuff 0.0.0.0"
if goo =~ /value of foo here dynamically/
puts "success!"
end

最佳答案

与字符串插入相同。

if goo =~ /#{Regexp.quote(foo)}/
#...

关于ruby - 将字符串插入正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/150095/

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