将嵌套字段分成两个新字段,保持顺序
我一直在尝试打破如下示例文件,使第三列变成两部分,同时保持文件内的顺序。
100 400 500.00苹果 5.8 9.2
200 300 600.00狗 5.3 9.1
300 763 454.44小猫 5.7 9.2
应导致
100 400 500.00 苹果 5.8 9.2
200 300 600.00 狗 5.3 9.1
300 763 454.44 小猫 5.7 9.2
我曾尝试在 awk 中这样做,但似乎遇到了问题。
PS:在正则表达式中,分隔点始终是数字 [0-9] 后跟 [a-zA-Z]。
I've been trying to break a sample file as below such that the third column becomes two parts while maintaining order within the file.
100 400 500.00APPLE 5.8 9.2
200 300 600.00DOG 5.3 9.1
300 763 454.44KITTEN 5.7 9.2
Should result in
100 400 500.00 APPLE 5.8 9.2
200 300 600.00 DOG 5.3 9.1
300 763 454.44 KITTEN 5.7 9.2
I've toyed doing this in awk but seem to be having issues.
PS: The point upon which to separate is always a digit [0-9] followed by [a-zA-Z] in regex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
概念证明
或者如果您有
gawk
,您可以使用以下方法将拆分限制为仅第三个字段:概念证明
Try:
Proof of Concept
Or if you have
gawk
you can limit the split to just the 3rd field by using:Proof of Concept