ANSWER: Use the System Expression "RegexReplace" to SEARCH through a string and REPLACE any
characters, or string of characters with another character or string of characters.
Example: RegexReplace(Text.Text, "p", "g", "*")
Searches the string saved in "Text.Text" for the letter "p" and replaces it with "*"
The "g" is s GLOBAL FLAG property that just means to repeat the search and replace thru the
entire string, not just ONCE or the FIRST occurrence.
For my problem with URL special characters, I had to run several operations on the same string.
The % is followed by the ASCII code for the character that was replaced by the browser.
%3A = ":", etc.
RegexReplace(Cookie_IN,"%3A","g",":")
RegexReplace(Cookie_IN,"%2F","g","/")
RegexReplace(Cookie_IN,"%2B","g","+")
RegexReplace(Cookie_IN,"%3D","g","=")