Using Regex Find / Replace in Notepad ++, I'm trying to add spaces between each uppercase letter inside double quotes:
.Label("ATextWhichHasCapitalLetters")
.Label(Constants.DefinedLabel)
.Label("AnotherTextWhichHasCapitalLetters")
The result should be:
.Label("A Text Which Has Capital Letters")
.Label(Constants.DefinedLabel)
.Label("Another Text Which Has Capital Letters")
I tried many expressions but could not get the expected result.
Any help would be greatly appreciated.
Thanks.
source
share