sed 进行部分替换?
想象一下,我有一个具有以下类型行的文件:
FIXED_DATA1 VARIABLE_DATA FIXED_DATA2
我想更改固定数据并保留变量数据不变。 由于各种原因,使用两个 sed 操作来替换固定数据是行不通的。例如,固定字段可能是双引号,并且该行具有包含它们的其他区域,因此实际上编写正则表达式来匹配可变数据和固定数据中的模式。
如果我一心想使用 sed,有没有办法同时更改两个固定数据字段,同时保持变量字段不变?
谢谢。
Imagine I have a file that has the following type of line:
FIXED_DATA1 VARIABLE_DATA FIXED_DATA2
I want to change the fixed data and leave the variable data as is. For various reasons, using two sed operations to replace the fixed data will not work. For instance, the fixed fields might be double-quotes, and the line has other areas containing them, thus really the regex is written to match a pattern in the variable data and the fixed data.
If I'm bent on using sed, is there a way to change both fixed data fields at once while leaving the variable field unchanged?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将该行分成三部分,替换外部两部分并保留中间部分:
您可以根据需要使开始和结束匹配更加复杂。
You need to partition the line into the three pieces, replace the outer two and leave the middle alone:
You can make the beginning and end matches more complex as needed.