Hi friends, i’m stucked in this code and any help would be appreciated.
I’ve tried to solve it with this:
string = string.split("%22").join(""");
I need to replace the " representation with a simple "
string = string.split(""").join(???);
The string comes from an XML, wich is loaded into a PHP to be sended into a Flash LoadVars. Then is decoded in Flash (with the string-split sentence shown above) and parsed into a inpot textfield. The result is the complete XML with it’s tags.
It works perfect until i wanted to edit some attributes, wich must be into quotes. After introducing manually the quotes the problem appears, as I can’t get rid of the backslash.
Thx for reading, and for your help