Reputation: 452
I'm trying to use regex and notepad++ to convert "CapitalCaseWords" with "Capital Case Words" I stole a regex from the answer here which does what I need, but I don't know how to convert it into find and replace versions for use in npp...
https://regex101.com/r/Dp95YL/3
Upvotes: 0
Views: 175
Reputation: 521093
You could try replacing with the following lookarounds:
Find: (?<=[a-z])(?=[A-Z])
Replace: (single space)
Upvotes: 1