please tell me whether it is possible to perform a replacement in a string that combines several different substitutions using VBA (excel)?
For example:
text = Replace(text, find1, res1)
text = Replace(text, find2, res2)
Real example:
text = Replace(text, " ", " ")
text = Replace(text, "&", "&")
text = Replace(text, "<", "<")
Maybe regexp?