notepad删除包含/不包含的字符

删除包含drop字符的行

^.*drop.*$

删除包含drop字符的行,并去除该空格行

^.*drop.*\r?\n

删除 不包含TextData字符的行

^((?!TextData).)*$

删除 不包含TextData字符的行,并去除该空格行

^((?!TextData).)*\r?\n

你可能感兴趣的:(notepad,eclipse)