7
I wanted to replace, in a string, all character occurrences &
by a e
(or remove it). The character may be in the middle of a word or appear several times in the same string.
Example:
Original value: João went to the Hotel & Spa for holidays.
After replacement: João went to the Hotel and Spa to spend holidays.
And either the result corrected in a variable or you want to replace in the database?
– Sergio
@Sergio I want the result in a variable
– pc_oc