Sed:使用找到的字符串作为变量

发布于 2024-12-05 08:20:57 字数 316 浏览 0 评论 0 原文

我正在寻找一种方法来替换表单的所有实例:

model->variable

其中

models[variable][index]

变量几乎可以是字母和数字的任意组合,可能定义为 [0-9a-Z]{4,12}。 文本中有数百个这样的变量。我需要知道找到的字符串“变量”的确切形式才能在替换中使用它。有没有办法“记住”该字符串并在以后使用它?或者任何其他方法/软件在这种情况下可以提供帮助?

提前致谢。

如果你能顺便将“变量”转换为大写,那就太棒了。

I'm looking for a way to replace all instances of a form:

model->variable

with

models[variable][index]

where variable can be pretty much any combination of letters and numbers, probably defined like [0-9a-Z]{4,12}.
There are hundreds of such variables in the text. I need to know exact form of found string "variable" to use it in replacement. Is there a way to "remember" the string and use it later? Or any other method / software which could help in such case?

Thanks in advance.

If you could convert "variable" to uppercase by the way, it would be awesome.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

握住我的手 2024-12-12 08:20:57

如果将模式括在 \(...\) 中,则可以使用模式中的内容进行替换。然后,您可以使用 \1 插入第一个此类括号捕获的内容。

解决您的问题的一个简单的解决方案是:

sed 's/model->\(.*\)/models[\1][index]/' file.txt

You can use things in the pattern to replace with if you enclose it in \(...\). You then use \1 to insert the thing that was captured by the first such bracket.

A naïve solution to your problem would be this:

sed 's/model->\(.*\)/models[\1][index]/' file.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文