下線( "_")で始まる特定の単語を含むドキュメントがあります。 notepad ++を大文字に変更するには、正規表現が必要です。
私はこれを試しましたが、機能しません:
_\w+
検索する:
(_\w+)
置き換え:
\U$1
...これで完了です! (必ず左下隅にある[正規表現]ラジオボタンをクリックしてください。)
私のテストは次のとおりでした。
前:
Hi, this is a test _with some _words starting _WITH _Underscores
Let's try to _toUpper them all!
後:
Hi, this is a test _WITH some _WORDS starting _WITH _UNDERSCORES
Let's try to _TOUPPER them all!
幸運を!