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.
次のようなデータのリストがあります...
OrangeAppleBananaPearGrape
データを次のように取得する必要があります....
Orange Apple Banana Pear Grape
Notepad++ を使用していて、検索文字列 (.)([AZ]) がありますが、見つかった大文字ごとに改行するにはどうすればよいですか?
大文字と小文字を区別するボックスをオンにして、先読みを使用する必要があります(?=...)。
(?=...)
find: (?=[A-Z]) replace: \n