gpt4 book ai didi

ruby - 使用 regex + gsub 从字符串中删除方括号内的文本

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

text = "This [is] a [fill]-in-the-[blank]"

我正在寻找正则表达式来为我施展魔法:

new_text = text.gsub(/[magic happens]/, "")

=> "This [] a []-in-the-[]"

我的代码是 Ruby,但我敢打赌这无关紧要。

最佳答案

像这样的东西会起作用:

text = "This [is] a [fill]-in-the-[blank]"
text.gsub(/\[.+?\]/, '[]')
#=> "This [] a []-in-the-[]"

关于ruby - 使用 regex + gsub 从字符串中删除方括号内的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15420738/

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