Answered
regex
I would like to replace %20 in a string with a space using a regular expression in order to insert the string into a database. I have tried to use
ReReplace("#varriable1#","%20","[[:space:]]","ALL")
But it fails to work. Is this allowed and if so is this simply incorrect syntax?
