gpt4 book ai didi

Ruby 正则表达式搜索

转载 作者:太空宇宙 更新时间:2023-11-03 17:05:54 25 4
gpt4 key购买 nike

我正在编写一个脚本,用于在 HTML 文本 block 中搜索 %{} 符号以将其替换为动态变量。

出于某种原因,我的正则表达式无法正常工作。

str = "<p>%{urgent_personal_confidential}</p>"

regex = /^%\{(.*)\}/
puts str.match(regex)

我敢肯定这很简单……有什么可能出错的想法吗?

最佳答案

Ruby 已经具有该功能 built-in into String .

"The quick brown %{animal1} jumps over the lazy %{animal2}" % { :animal1 => "fox", :animal2 => "dog"  }

结果是

"The quick brown fox jumps over the lazy dog"

关于Ruby 正则表达式搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5083625/

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