How to find letters after a period using regex and capitalize the first letter?
Hi,
I tried to find letter after period and capitalize it using StringReplacer but it did not work. Is it possible to accomplish such a thing with the StringReplacer? For example: Condition: good. ensure continuous maintenance. The result should be like this: Condition: good. Ensure continuous maintenance.
Text to Replace: (^:a]|\. ]a-z])
Replacement txt: .\U$1 also \U\1 won’t work.
Thanks
Leida
Page 1 / 1
Hi Leida, I haven't got the /U$1 approach to work either. I used a StringSearcher to get the first letter after a period in an attribute (with RegEx: (?<=\. )[a-z]), and a StringConcatenator switched to Advanced mode with the following Expression:
Hi Leida, I haven't got the /U$1 approach to work either. I used a StringSearcher to get the first letter after a period in an attribute (with RegEx: (?<=\. )[a-z]), and a StringConcatenator switched to Advanced mode with the following Expression: