I have imacros go on a webpage and download the extraction as an html file. But for some reason it is writing doubles quotes inside the file breaking links. How to fix this?
EXAMPLE:
I have imacros go on a webpage and download the extraction as an html file. But for some reason it is writing doubles quotes inside the file breaking links. How to fix this?
EXAMPLE:
Use JavaScript or EVAL
the code is text=text.replace(/""/g,'"');
http://wiki.imacros.net/EVAL
Edit:
Try this out to:
text=text.replace(/\"\"/g,'"');
Some special characters are written like this \s \n \r /