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.
本质上我有一组名字,比如
name1, name2, name3,
我想通过记事本++中的查找和替换来实现
name1 = name1, name2 = name2, name3 = name3,
我在Find what中找到那些 name1 name2 没有问题:
[^\s,]+
但是在Replace with中,我应该怎么做才能将 ',' 替换为 "=不管找到什么,," ?
谢谢
查找内容(假设您的正则表达式正确找到您想要的内容):[^\s,]+
用。。。来代替:$0 = $0
$0 = $0
$0表示与“查找内容”中的表达式匹配的所有内容
$0
您可以尝试在搜索字段中使用以下正则表达式:
^(\w+\d),
和替换字段:
1 美元 = 1 美元,
希望对你有帮助!