Hi everyone,
I have phone numbers entered as 49123456789, where "49" is the country code
I'd like to change the format to +49 123456789
I tried this
if StartWith[Phone], "49"
then replace[phone], "49", "+49 "
this formula changes also any '49' string within the phone number, which is not what I aim to.
how can I say that I want to change only the first occurrence?
thank you
ms