Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我让 imacros 进入网页并将提取的内容下载为 html 文件。但由于某种原因,它在文件中断链接中写入双引号。如何解决这个问题?
例子:
使用 JavaScript 或 EVAL
代码是text=text.replace(/""/g,'"');
text=text.replace(/""/g,'"');
http://wiki.imacros.net/EVAL
编辑:
试试这个:
text=text.replace(/\"\"/g,'"');
一些特殊字符是这样写的 \s \n \r /