I'm working in java and I have a string that contains:
"Tom %26 Jerry"
I get it from a text area. I don't want this, I want:
"Tom & Jerry";
How can I do?
Thank you very much.
Finaly I resolved the problem. I found the solution here How to do URL decoding in Java?
I have done the following:
name = java.net.URLDecoder.decode(name, "UTF-8");