本文介绍了如何删除html敏捷包中的空格和换行符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





i正在使用html Agility包。



 HtmlWeb htmlWeb =  new  HtmlWeb(); 
的HTMLDocument的HTMLDocument = htmlWeb.Load( http://en.wikipedia.org/wiki/Paintball );





out put like

< html xmlns = \http: //www.w3.org/1999/xhtml\\">\\\
\t<head></head>\\\
\t<body>\\\
\\\

Alle Auktionen

\ n \ n \\ n< / body> \ n< / html>



输出包含

不必要的空格和换行符



所以有没有办法摆脱没有空格和

换行符
解决方案



Hi,

i am working with html Agility pack.

HtmlWeb htmlWeb = new HtmlWeb();
HtmlDocument htmlDocument = htmlWeb.Load("http://en.wikipedia.org/wiki/Paintball");



out put like
<html xmlns=\"http://www.w3.org/1999/xhtml\">\n\t<head></head>\n\t<body>\n\n

Alle Auktionen

\n\n\t</body>\n</html>

output contain

unnecessary whitespaces and newline characters


so is there any way to to get out put without whitespaces and

newline characters
解决方案




这篇关于如何删除html敏捷包中的空格和换行符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 08:56