gpt4 book ai didi

Ruby:从字符串生成新的正则表达式

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

有什么方法可以将 String 转换为 Regexp(在 Ruby 中)?比方说:

'example' ---> /example/

我的目的是动态生成正则表达式。

最佳答案

regexp = Regexp.new(string)

regexp = /#{string}/

如果string可能有特殊字符,那么:

regexp = Regexp.new(Regexp.escape(string))

regexp = /#{Regexp.escape(string)}/

关于Ruby:从字符串生成新的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5413165/

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