我想检查html字符串是否仅包含空格。我按照此post中的建议使用了HtmlAgilityPack,当html字符串中仅包含文本时,它可以正常工作:
"< title></title><p style=\"margin: 0em 0px;\"><\br></p>"
但是当它包含图像之类的任何标签时,HtmlAgilityPack也会将其标记为空
"< title></title><p style="margin: 0em 0px;"><img src="https: //www.google.com.pk/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png"></p><p style="margin:0em 0px;"><\br></p>"
我要检查的是,在浏览器上呈现html数据后,它不应为空白。