有没有办法在Notepad ++中编写连续的Replace-All操作脚本?
例如,我希望能够先用&ldquo
替换所有“字符”,然后用&rdquo
替换所有“字符”,然后我想用“string2”替换所有“string1”等...
答案 0 :(得分:0)
没关系,
我终于明白了,这似乎是一个很好的解决方案。
我使用PythonScript for NotePad ++(这是我开始使用的,但它一直给我错误,直到我最终解决了一些问题。)
因此,以下是可能感兴趣的人的代码:
# This Python file uses the following encoding: utf-8
import os, sys
editor.replace(r"“",r"“")
editor.replace(r"”",r"”")
editor.replace(r"’",r"’")
引号前的r
允许使用特殊字符,这对我来说非常困难。