Hello community!
I need to split a string (file name) by uppercase followed by lowercase (or lowercase followed by uppercase)
Reason: I have a file name where all words and acronyms are written as one string. I have to split it, but acronyms have to be ignored.
Example: ImportantInformationFromCEOMaxMusterman
Desired output: Important Information From CEO Max Musterman
I managed it to split it by every capital letter, but it is not that what we really need.
I understand, that the logic has to be like here: python example or here
but I struggle with translating it into "PowerAutomate".