I want to transform a string containing a + with different variants. One of them is removing the + and transforming the following letter to lowercase. Currently I do this in two steps.
Is there a way to do this in one go? With only knowing basics of regular expressions I thought that this in principle should be possible when I have a look at
Many thanks for the answers. While @rafael.guerra’s answer works in this case, because the initial letter is also uppercase, the more general solution is the one of @aplavin which really only changes the matched part. Using an anonymous function … I would have never come up with that solution