Hi!
I have a string that needs to be URL decoded.
for example: "/>
Will I have to do a stringreplace for every character or is there a simpler way in MS?
i.e replace " with "
Thanks!
URL decode a string?
Moderators: JRL, Dorian (MJT support)
- Bob Hansen
- Automation Wizard
- Posts: 2475
- Joined: Tue Sep 24, 2002 3:47 am
- Location: Salem, New Hampshire, US
- Contact:
-
- Pro Scripter
- Posts: 149
- Joined: Tue Mar 23, 2004 9:11 pm
-
- Pro Scripter
- Posts: 149
- Joined: Tue Mar 23, 2004 9:11 pm
-
- Pro Scripter
- Posts: 149
- Joined: Tue Mar 23, 2004 9:11 pm
Here is what I did to solve it.
[quote]
StringReplace>Out,å ;,Ã¥,Out
StringReplace>Out,ä ;,ä,Out
StringReplace>Out,ö ;,ö,Out
StringReplace>Out,Å ;,Ã…,Out
StringReplace>Out,Ä ;,Ä,Out
StringReplace>Out,Ö ;,Ö,Out
StringReplace>Out,ü ;,ü,Out
StringReplace>Out,Ü ;,Ü,Out
StringReplace>Out,é ;,é,Out
StringReplace>Out,É ;,É,Out
StringReplace>Out," ;,",Out
StringReplace>Out,< ;,Out,> ;,>,Out
[/quote]
Ps I had to add a space in the code "É ;" , otherwise Your browser translates it.
[quote]
StringReplace>Out,å ;,Ã¥,Out
StringReplace>Out,ä ;,ä,Out
StringReplace>Out,ö ;,ö,Out
StringReplace>Out,Å ;,Ã…,Out
StringReplace>Out,Ä ;,Ä,Out
StringReplace>Out,Ö ;,Ö,Out
StringReplace>Out,ü ;,ü,Out
StringReplace>Out,Ü ;,Ü,Out
StringReplace>Out,é ;,é,Out
StringReplace>Out,É ;,É,Out
StringReplace>Out," ;,",Out
StringReplace>Out,< ;,Out,> ;,>,Out
[/quote]
Ps I had to add a space in the code "É ;" , otherwise Your browser translates it.