Imacros Writing Double Quotes to html File, why?

北慕城南 提交于 2020-02-05 18:39:28

问题


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:


回答1:


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 /



来源:https://stackoverflow.com/questions/17047225/imacros-writing-double-quotes-to-html-file-why

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!