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.
如何替换三个连续整数的出现?
我有一个列表,其中包含一些不需要的整数,这些整数是所有三个数字的组合。
此正则表达式将使用量词查找 3 个连续数字:
[0-9]{3}
Notepad++ 5.9.8 及更低版本的正则表达式引擎不支持量词(source)。
Find :([^\d])\d{3}([^\d]) Replace:\1\2
这会转...
|333|4444|55555| "1","22","333" ...到.... ||4444|55555| "1","22",""
|333|4444|55555| "1","22","333"
...到....
||4444|55555| "1","22",""