仅替换引号之间的空格
我有来自日志文件的行:
field 1234 "text in quotes" 1234 "other text in quotes"
我想替换引号之间的空格,这样我就可以使用空格作为分隔符来提取列。所以结果可能是
field 1234 "text@in@quotes" 1234 "other@text@in@quotes"
我自己无法找到 sed 的工作正则表达式。 非常感谢您的帮助。 马丁
I have line from log file:
field 1234 "text in quotes" 1234 "other text in quotes"
I would like to replace spaces in between quotes, so I could than extract columns using space as delimiter. So the result could be something like
field 1234 "text@in@quotes" 1234 "other@text@in@quotes"
I was not able to find out working regex for sed myself.
Thanks a lot for help.
Martin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
红宝石(1.9+)
Ruby(1.9+)
通过使用双引号作为 RS,所有偶数记录都是双引号内的记录。替换那些偶数记录中的空间。由于输出记录分隔符默认为换行符,请将其更改为双引号。
by using double quote as RS all even records are the ones inside double quotes. replace space in those even records. Since output records separator is newline by default ,change it to double quote.
如果您决定将
sed
替换为功能更丰富的perl
,那么这里有一个行可以满足您的需求:If you decide to swap
sed
with more feature richperl
then here is one liner to get what you need:通过以下 awk 命令传输日志文件:
Pipe your log file through this awk command:
感谢您的所有回答。
这是我最终使用的 Perl 单行代码:
它会生成 required
。
Thanks for all answers.
This is perl one-liner I finally use:
it results in required
.