我在Notepad ++中有一个大文本文件,我想找到某些行。让我们说它看起来像:
I don't like numbers 1 2 and 3
I don't like most symbols either, ! @ and # are bad
But I do like lines with no numbers and only symbols . and *
在上文中,我想排除文件中那些包含数字和除句点之外的所有符号或(比方说)星号的行。
我现在知道负面前瞻/后面不会这样工作,但我的意思是像交配一样负面的前瞻条件,如(?!= [\ d])或[^ \ d]一起搜索包含^ [A-Za-z。* \ s] + $等单词的行,但是在负数匹配时整行都被拒绝,无论它出现在哪一行。