I'm trying to transform strings in Alteryx using one regex tool as follows
Original:
lorem ipsum. DOLOR SIT AMET.
Looking for:
Lorem ipsum. Dolor sit amet.
Now, I did manage to match this pattern with the following REGEX
(^\w)|\.\s(\w)
But I'm not sure how to replace it in Alteryx.
Any ideas? I expected \U$1\U$2
and copy unmatched to work.