Notepad ++:搜索静态值并将其替换为list中的值

时间:2015-08-11 14:57:45

标签: regex notepad++

1档案:

<DisplayName>**just_an_example**</DisplayName>
<DisplayName>**just_an_example**</DisplayName>
<DisplayName>**just_an_example**</DisplayName>
<DisplayName>**just_an_example**</DisplayName>

2档

**example1**
**example2**
**example3**
**example4**

我需要什么:

在notepad ++ native search / replace对话框中,搜索“just_an_example”并将其替换为第二个文件中的值。

输出:

<DisplayName>**example1**</DisplayName>
<DisplayName>**example2**</DisplayName>
<DisplayName>**example3**</DisplayName>
<DisplayName>**example4**</DisplayName>

是否可以在Notepad ++下搜索所有活动文件。可能没有使用Python脚本?

1 个答案:

答案 0 :(得分:1)

您的问题意味着文件1的内容不相关(DisplayName标记除外)。

因此,通过粘贴所有文件2替换文件1的内容,并用标记替换新行。您可以通过搜索\n并将其替换为</DisplayName>\n<DisplayName>,在Notepad ++中执行此操作。剩下的就是手动修复第一行和最后一行。