• InnerText和InnerXml的区别 from


    InnerText无格式显示里面的所有内容,InnerXml含有格式的显示;应该和InnerTextInnerHtml是一样的。

    XmlDocument doc = new XmlDocument();

    doc.LoadXml("<root>" +

                "<elem>some text<child/>more text</elem>" +

                "</root>");

     

    XmlNode elem = doc.DocumentElement.FirstChild;

     

    // Note that InnerText does not include the markup.

    Console.WriteLine("Display the InnerText of the element...");

    Console.WriteLine(elem.InnerText);

     

    //来源MSDN

    // InnerXml includes the markup of the element.

    Console.WriteLine("Display the InnerXml of the element...");

    Console.WriteLine(elem.InnerXml);

     

    // Set InnerText to a string that includes markup. 

    // The markup is escaped.

    elem.InnerText = "Text containing <markup/> will have char(<) and char(>) escaped.";

    Console.WriteLine(elem.OuterXml);

     

    // Set InnerXml to a string that includes markup. 

    // The markup is not escaped.

    elem.InnerXml = "Text containing <markup/>.";

    Console.WriteLine(elem.OuterXml);

    Console.Read();

    输出:

    Display the InnerText of the element...

    some textmore text

    Display the InnerXml of the element...

    some text<child />more text

    <elem>Text containing &lt;markup/&gt; will have char(&lt;) and char(&gt;) escape

    d.</elem>

    <elem>Text containing <markup />.</elem>
  • 相关阅读:
    关于阿里JSON的方法使用
    Xcode自带Git的使用
    IOS学习随笔
    python站点配置相关
    Kingfisher基本入门介绍
    Swift Package Manager使用
    swift中json编码解码
    Weapon项目笔记
    wxj的图片
    类似西瓜视频、抖音的自动播放库
  • 原文地址:https://www.cnblogs.com/maliya/p/1718447.html
Copyright © 2020-2023  润新知