标签: regex notepad++
我想找到遵循这种格式的所有行:
type="file_one_id" type="file_two_id" type="file_three_id"
用一条替换线替换它们:
type="my_generic_replacement"
问题在于还有许多其他行也以type="file_开头或以_id"结尾,因此我认为搜索以type="file_开头的行和以_id"结尾将是必需的。有没有办法用notepad ++做到这一点?
type="file_
_id"
答案 0 :(得分:4)
您可以搜索^type="file_.*_id"$(使用正则表达式)并替换为type="my_generic_replacement"
^type="file_.*_id"$
答案 1 :(得分:1)
要替换Notepad ++中的行,您可以使用此正则表达式:
type="file_\w+_id"
要打开该窗口,请单击Search =>取代
答案 2 :(得分:-1)
您可以找到并替换\ r \ n,然后在“替换”框中选中扩展。 \ r \ n匹配回车+换行符。 某些系统在换行符处只能有\ r或只有\ n