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 つの整数を置き換えるにはどうすればよいですか?
3 つの数値すべてを組み合わせた不要な整数を含むリストがあります。
この正規表現は、量指定子を使用して 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」、「」