本文介绍了在一行中多次使用相同模式的正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在寻找的模式是这样的:
The pattern I'm looking for is this:
TXT.*\.txt
该模式可以在任何给定的行中多次出现.我想要么提取模式的每个实例,要么使用 sed(或任何东西,真的)删除围绕每个实例的文本.
That pattern can occur multiple times in any given line. I would like to either extract each instance of the pattern out or alternatively delete the text that surrounds each instance using sed (or anything, really).
谢谢!
推荐答案
您可以将 grep 用作:
You can use grep as:
grep -o 'TXT[^.]*\.txt' file
这篇关于在一行中多次使用相同模式的正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!