I need to escape strings that have the ampersand character and replace it with &. Basically things like • should be •.
What's the regex to look for '&' then some other characters followed by ';' but not &. I want to look for all those instances and replace only the beginning & with &
What's the regex to look for '&' then some other characters followed by ';' but not &. I want to look for all those instances and replace only the beginning & with &