我正在尝试使用HtmlAgilityPack来制作,进行更改并保存文档。但是如果一个文档包含php-tags,那么在尝试保存时它们会变坏。正则表达式不想使用,存在很多陷阱。这个问题有没有优雅的解决方案?
代码:
var Doc = new HtmlAgilityPack.HtmlDocument();
Doc.DetectEncodingAndLoad("page.html");
.............
string Result = Doc.DocumentNode.OuterHtml;
来源:
<html>
<?php echo "hello"; ?>
</html>
结果:
<html>
<?php echo="" "hello";=""?>
</html>
提前致谢。
答案 0 :(得分:1)
今天它不受支持,但如果您更改源代码并重新编译,则可以修复它(毕竟,这是开源的用途......)。转到HtmlNode.cs,找到internal void WriteAttributes(TextWriter outText, bool closing)
函数,并添加以下代码:
internal void WriteAttributes(TextWriter outText, bool closing)
{
if (Name.StartsWith("?"))
{
int len = _outerlength - 3 - _namelength;
if (len > 0)
{
outText.Write(OwnerDocument.Text.Substring(_namestartindex + _namelength, len));
return;
}
}
....
}