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.
notepad ++正規表現検索ツールを使用して、テキストファイル(行ではない)内の重複する単語または文字列を削除する方法を知りたいです。
TextFx を使用して重複行を削除する方法しか見ませんでしたが、それは私が探しているものではありません。
例 -
123 / 789 123 / 321
123 を削除すると、
123 / 789 / 321
Notepad++ には詳しくありませんが、標準の構文を使用すると仮定して、
\b(\w+)\b([\w\W]*)\b\1\b
と
$1$2