正则表达式 – 轻松解决复杂任务

前端之家收集整理的这篇文章主要介绍了正则表达式 – 轻松解决复杂任务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很好奇,如果这个看似复杂的任务有一个简单的解决方案:

说我有这个文件

lineone
linetwo
linethree
linefour

lineone
linetwo
linethree
linefour

lineone
lineone
lineone
linetwo
linethree
linefour

有没有一种简单的方法可以想到得到这个结果:

lineone[1]
linetwo[1]
linethree[1]
linefour[1]

lineone[2]
linetwo[2]
linethree[2]
linefour[2]

lineone[3]
lineone[4]
lineone[5]
linetwo[3]
linethree[3]
linefour[3]

换句话说,是否有一个简单的bash算法可以让我按照它在文件中出现的顺序对每一行进行编号?如果没有涉及额外存储的复杂解决方案,我无法找到一种方法,而我用于线路替换的常用命令在这里是无用的. sed只会用相同的值替换所有出现的行,而字符串replace(${string / substring / replace})对我没用,因为它不会保持行的顺序.

非常感激.

解决方法

以下awk命令通过保持一系列行及其计数来工作.

awk '{if($0~/./){a[$0]++;print $0"["a[$0]"]";} else print}' file

例:

$cat file
lineone
linetwo
linethree
linefour

lineone
linetwo
linethree
linefour

lineone
linetwo
linethree
linefour

lineone
lineone
lineone
linetwo
linethree
linetwo

$awk '{if($0~/./){a[$0]++;print $0"["a[$0]"]";} else print}' file
lineone[1]
linetwo[1]
linethree[1]
linefour[1]

lineone[2]
linetwo[2]
linethree[2]
linefour[2]

lineone[3]
linetwo[3]
linethree[3]
linefour[3]

lineone[4]
lineone[5]
lineone[6]
linetwo[4]
linethree[4]
linetwo[5]

猜你在找的正则表达式相关文章