我想对不包含数字的行进行文件排序

时间:2018-08-25 14:07:01

标签: regex linux sorting

我有一个包含混合字符串行的文件,例如桃子,十二个,十二个桃子,十二个桃子和十二个桃子。 我只想整理不包含数字的行,例如桃子,十二个,十二个桃子。 我在Linux中使用vim。

1 个答案:

答案 0 :(得分:-1)

如果仅依赖vi,也许您可​​以从正则表达式和grep中受益。

您要处理的行:

peaches, twelve, twelve_peaches, 12_peaches, and 12peaches
peaches, twelve, twelve_peaches

使用:

:g!/[[:digit:]]

结果:

peaches, twelve, twelve_peaches