如何使用 notepad++ 在 xml 标签之间选择具有相似字符的不同表达式

如何使用 notepad++ 在 xml 标签之间选择具有相似字符的不同表达式

我必须为 wordpress 调整 std xml。例如,我有许多类似这样的行:

line10<description>text1</description>
line18<description>text2</description>
line26<description>text3</description>
line34<description>text4</description>
line40<description>text5</description>

是否存在一个术语、字符来替换搜索框中的文本(n 个值)?例如,如果“值”替换文本 1、文本 2 等,我将使用搜索框:搜索<description>"value" 并全部替换为:<content:encoded><![CDATA["value"

当然,我可以逐个替换 xml 标签(先替换打开的标签,然后替换关闭的标签),但有时我也需要选择“文本”。这样清楚吗?谢谢

答案1

您需要研究使用正则表达式与 notepad++ 的搜索替换功能

https://stackoverflow.com/questions/287404/using-regular-expressions-to-do-mass-replace-in-notepad-and-vim

相关内容