I’m only on my phone at the moment… (midnight in the UK!), but in a server action, do something like this:
Set Value temp = $GET.my_string
Set Value temp = temp.replace(bla, bla)
Set Value temp = temp.replace(bla, bla)
Set Value temp = temp.replace(bla, bla)
Set Value temp = temp.replace(bla, bla)
I’m not 100% sure if there is a way of doing this with an array but there might be i’m just not sure of the syntax, however a method that does work is appending more replaces in code view:
name.replace('m', 'p').replace('p', '2')
But take note this will run each replace after the one before it so for example the word:
Example would become Exa22le
As the m is made into a p and then the p’s are made into 2’s