grep 正则表达式 多个替换
当我得到这个问题的答案时,我可能已经“手动”完成了。
我有两个变量(varA,varB)我想分别替换为(a,b),这当前需要两个单独的查找和替换。
使用正则表达式 grep 我知道如何使用进行两个单独的搜索 varA | varB
但没有替换函数可以类似地进行相应的替换,
除非您更了解?感谢您的任何见解
I will probably have done it "manually" by the time I get an answer for this.
I have two variables (varA, varB) I want to replace with (a, b) respectively, this currently requires two separate find and replaces.
with regex grep I know how to do two separate searches using
varA | varB
but there is no replace function that will similarly do a respective replacement
unless you know better? thanks for any insight
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
grep 用于搜索给定输入中的模式。您应该使用 sed 进行文本替换。对于单个 sed 命令中的多个替换,只需像这样使用它:
grep is used for searching pattern in a given input. You should use sed for text replacements. For multiple replacements in single sed command just use it like this: