标签: regex
我需要一个正则表达式模式,它会在文件中搜索除了存在hex-FF(256)之外的其他行。谢谢:))
答案 0 :(得分:1)
如果是grep,请使用:
grep -v 'FF' <file>
答案 1 :(得分:0)
我们可以使用negative lookahead:
^((?!FF).)*$
Test it here
答案 2 :(得分:0)
^(?!FF*$).+
快速测试后似乎对我有用。