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]) 但是如何在它找到的每个大写字母处换行?
以下在 np++ 查找和替换中对我有用:
您必须选中区分大小写的框并使用前瞻(?=...):
(?=...)
find: (?=[A-Z]) replace: \n