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 ++のコードのすべての行で、文字「=」の前にあるすべての単語を置き換える方法は?
正規表現で実行できます。
検索対象:^[\w\s]+\=(.*)$ 置換: newword\=\1. 詳細については、以下のスクリーンショットを参照してください。
^[\w\s]+\=(.*)$
newword\=\1
正規表現で「newword」の代わりに希望する置換単語を入力する必要があります。