我需要替换" "
之间的所有重复
即:这是实际的字符串
"vis": "<aaaaaaaaaaaa>" ( a could be letter or number or <,>,| )
我想替换所有重复出现的
"vis": "1"
使用Notepad ++可以吗?
谢谢
答案 0 :(得分:0)
:\h+"\K[^"]+
1
说明:
:\h+" # colon, horizontal spaces, double quote
\K # forget all we have seen until this position
[^"]+ # 1 or more any character that is not double quote
you may use [a-zA-Z0-0<>|]+ if you want to be more restrictive