njminchin
njminchin

Reputation: 452

Notepad++ Regex to replace capitalised-case words with space-capital

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

Answers (1)

Tim Biegeleisen
Tim Biegeleisen

Reputation: 521093

You could try replacing with the following lookarounds:

Find:   (?<=[a-z])(?=[A-Z])
Replace: (single space)

Demo

Upvotes: 1

Related Questions