gpt4 book ai didi

ruby-on-rails - 用另一个字符串 rails 替换子字符串

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

在我的 Rails 应用程序中,我将问题保存为 html。例如,

"<p>&lt;pre dir=\"ltr\" style=\"background-color: #ede7db; color:
#000000; margin: 0px; padding: 6px; border: 1px inset; width: 640px; height: 194px; text-align: left; overflow: auto; background-position: initial initial; background-repeat: initial initial;\" class=\"alt2\"&gt;void myFunc (int x) <br />{ <br /> if (x &amp;gt; 0)<br /> myFunc(--x); <br /> printf(\"%d, \", x); <br />} <br />int main() <br />{ <br /> myFunc(5); <br /> return 0; <br />}&lt;/pre&gt;</p>"

我需要用 width:auto; 替换所有宽度属性

帮我做同样的事情。谢谢:)-

最佳答案

试试这个,假设字符串在变量 s 中:

s.gsub(/width:[^;]*;/, 'width: auto;')

关于ruby-on-rails - 用另一个字符串 rails 替换子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15090240/

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