Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个文件中有这样的词。
"abc "defgh "ijklmno "1234 "123
我可以通过使用这个正则表达式^\".*$来找到单词 我需要在文本中附加另一个引号,以便文本成为引用文本。
如何做到这一点?
你通常可以只更换
(?<=^").*
经过
$0"
如果您的单词总是从行首开始,您可以录制一个宏并从文件的开头到结尾运行它。
否则,您可以使用正则表达式: 在记事本++ v6.3.3 中,这对我有用: Ctrl + F -> 替换 -> 正则表达式
寻找: ^\".*$
^\".*$
代替: $0"