生成带有文本的缩进属性值

潘卡伊

我需要将输入xml转换为另一个xml,在其中应打印每个元素,并且如果元素具有特定的属性(x或y),则应打印其值和内联文本。输入的每个元素都应该发生。根据每个元素的层次结构,应添加缩进。

输入XML:

        <?xml version="1.0" encoding="UTF-8"?>
        <root>
            <tom x="1" y="2" z='11'>
                <para x="3" y="4" z='22'>This is first para</para>
                <para x="5" y="6" z='23'>This is seond para
                    <ol x="7">
                        <li x="8" y="9" z='24'>this is listitem</li>
                        <li x="9" y="10" z='25'>this is listitem</li>
                    </ol>
                </para>
            </tom>
            <harry x='11' y='12'>
                <para x='13' y='14'>This is third para <b x='13'>this is bold <i y='14'>this is italic uder bold</i></b></para>
            </harry>
        </root>

输出应该是;

        <newXML>
        <p>{root}</p>
        <p>    {tom}</p>
        <p>   [Start attribute x='1']</p>
        <p>   [Start attribute y='2']</p>
        <p>       {para}</p>
        <p>       [Start attribute x='3']</p>
        <p>       [Start attribute y='4']</p>
        <p>         This is first para</p>
        <p>       [end attribute x='3']</p>
        <p>       [end attribute y='4']</p>
        <p>       {para}</p>
        <p>       [Start attribute x='5']</p>
        <p>       [Start attribute y='6']</p>
        <p>         This is second para</p>
        <p>          {ol}</p>
        <p>          [Start attribute x='7']</p>
        <p>            {li}</p>
        <p>            [Start attribute x='8']</p>
        <p>            [Start attribute y='9']</p>
        <p>              this is listitem</p>
        <p>            [end attribute x='8']</p>
        <p>            [end attribute y='9']</p>
        <p>            {li}</p>
        <p>             [Start attribute x='9']</p>
        <p>             [Start attribute y='10']</p>
        <p>              this is listitem</p>
        <p>             [end attribute x='9']</p>
        <p>             [end attribute y='10']</p>
        <p>         [end attribute x='7']</p>
        <p>       [end attribute x='5']</p>
        <p>       [end attribute y='6']</p>     
        <p>    [end attribute x='1']</p>
        <p>    [end attribute y='2']</p> 
        <p>   {harry}</p>
        <p>      ....</p>
        </newXML>      

我正在尝试类似的操作,但对于诸如“ ol”,“ b”,“ i”之类的内联元素却失败了。也无法放入缩进。

        <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
              <xsl:template match="/">
                <xsl:element name="newXML">
                  <xsl:for-each select="root//*">
                      <p>
                          <xsl:text>{</xsl:text><xsl:value-of select="local-name(.)"/><xsl:text>}</xsl:text>
                      </p>
                      <xsl:if test="@x or @y">
                          <p><xsl:text>[Start attribute x=</xsl:text><xsl:value-of select="@x"/><xsl:text>]</xsl:text></p>
                          <p><xsl:text>[Start attribute y=</xsl:text><xsl:value-of select="@y"/><xsl:text>]</xsl:text></p>                                    
                      </xsl:if>
                      <xsl:choose>
                          <xsl:when test="text()[1][(string-length(normalize-space(.)) = 0)]">
                              <p></p>
                          </xsl:when>
                          <xsl:otherwise>
                              <p>
                                  <xsl:apply-templates/>
                              </p>
                          </xsl:otherwise>
                      </xsl:choose>
                      <xsl:if test="@x or @y">
                          <p><xsl:text>[end attribute x=</xsl:text><xsl:value-of select="@x"/><xsl:text>]</xsl:text></p>
                          <p><xsl:text>[end attribute y=</xsl:text><xsl:value-of select="@y"/><xsl:text>]</xsl:text></p>                  
                      </xsl:if>
                  </xsl:for-each>
                </xsl:element>        
            </xsl:template>

            <xsl:template match="*">
                <xsl:choose>
                    <xsl:when test="self::ol and parent::para"></xsl:when>
                    <xsl:otherwise><xsl:apply-templates></xsl:apply-templates></xsl:otherwise>
                </xsl:choose>        
            </xsl:template>
        </xsl:stylesheet> 
丹尼尔·海利

这是一个与其他答案不同的答案,它实际上使用了XSLT / XPath 2.0功能,例如for循环xsl:function,和序列。由于可以使用2.0,因此不妨利用它!

另外,应包含的属性是作为元素完成的xsl:param,可以在运行时传递。如果您的XML输入发生更改,则无需在XSLT中更改硬编码的属性名称。

XML输入

<root>
    <tom x="1" y="2" z='11'>
        <para x="3" y="4" z='22'>This is first para</para>
        <para x="5" y="6" z='23'>This is seond para
            <ol x="7">
                <li x="8" y="9" z='24'>this is listitem</li>
                <li x="9" y="10" z='25'>this is listitem</li>
            </ol>
        </para>
    </tom>
    <harry x='11' y='12'>
        <para x='13' y='14'>This is third para <b x='13'>this is bold <i y='14'>this is italic uder bold</i></b></para>
    </harry>
</root>

XSLT 2.0

<xsl:stylesheet version="2.0" xmlns:l="local" xmlns:xs="http://www.w3.org/2001/XMLSchema"
    exclude-result-prefixes="l xs" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:param name="include-attrs" select="('x','y')"/>

    <xsl:function name="l:indent">
        <xsl:param name="level"/>
        <xsl:for-each select="1 to $level">
            <xsl:text>&#xA0;&#xA0;&#xA0;&#xA0;</xsl:text>
        </xsl:for-each>
    </xsl:function>

    <xsl:template match="/">
        <newXML>
            <xsl:apply-templates/>
        </newXML>
    </xsl:template>

    <xsl:template match="*">
        <xsl:variable name="level" select="count(ancestor-or-self::*)-1"/>      
        <p>
            <xsl:value-of select="l:indent($level)"/>
            <xsl:value-of select="concat('{',local-name(),'}')"/>
        </p>
        <xsl:apply-templates select="@*[local-name()=$include-attrs]">
            <xsl:with-param name="mode" select="'Start'"/>
            <xsl:with-param name="level" select="$level"/>
        </xsl:apply-templates>
        <xsl:apply-templates/>  
        <xsl:apply-templates select="@*[local-name()=$include-attrs]">
            <xsl:with-param name="mode" select="'End'"/>
            <xsl:with-param name="level" select="$level"/>
        </xsl:apply-templates>
    </xsl:template>

    <xsl:template match="@*">
        <xsl:param name="mode"/>
        <xsl:param name="level"/>
        <p>
            <xsl:value-of select="l:indent($level)"/>
            <xsl:value-of select="concat('[',$mode,' attribute ',local-name(),'=''',.,'''',']')"/>
        </p>    
    </xsl:template>

    <xsl:template match="text()">
        <xsl:variable name="level" select="count(ancestor-or-self::*)"/>                
        <p>
            <xsl:value-of select="l:indent($level)"/>
            <xsl:value-of select="normalize-space(.)"/>
        </p>
    </xsl:template>

</xsl:stylesheet>

XML输出

<newXML>
   <p>{root}</p>
   <p>    {tom}</p>
   <p>    [Start attribute x='1']</p>
   <p>    [Start attribute y='2']</p>
   <p>        {para}</p>
   <p>        [Start attribute x='3']</p>
   <p>        [Start attribute y='4']</p>
   <p>            This is first para</p>
   <p>        [End attribute x='3']</p>
   <p>        [End attribute y='4']</p>
   <p>        {para}</p>
   <p>        [Start attribute x='5']</p>
   <p>        [Start attribute y='6']</p>
   <p>            This is seond para</p>
   <p>            {ol}</p>
   <p>            [Start attribute x='7']</p>
   <p>                {li}</p>
   <p>                [Start attribute x='8']</p>
   <p>                [Start attribute y='9']</p>
   <p>                    this is listitem</p>
   <p>                [End attribute x='8']</p>
   <p>                [End attribute y='9']</p>
   <p>                {li}</p>
   <p>                [Start attribute x='9']</p>
   <p>                [Start attribute y='10']</p>
   <p>                    this is listitem</p>
   <p>                [End attribute x='9']</p>
   <p>                [End attribute y='10']</p>
   <p>            [End attribute x='7']</p>
   <p>        [End attribute x='5']</p>
   <p>        [End attribute y='6']</p>
   <p>    [End attribute x='1']</p>
   <p>    [End attribute y='2']</p>
   <p>    {harry}</p>
   <p>    [Start attribute x='11']</p>
   <p>    [Start attribute y='12']</p>
   <p>        {para}</p>
   <p>        [Start attribute x='13']</p>
   <p>        [Start attribute y='14']</p>
   <p>            This is third para</p>
   <p>            {b}</p>
   <p>            [Start attribute x='13']</p>
   <p>                this is bold</p>
   <p>                {i}</p>
   <p>                [Start attribute y='14']</p>
   <p>                    this is italic uder bold</p>
   <p>                [End attribute y='14']</p>
   <p>            [End attribute x='13']</p>
   <p>        [End attribute x='13']</p>
   <p>        [End attribute y='14']</p>
   <p>    [End attribute x='11']</p>
   <p>    [End attribute y='12']</p>
</newXML>

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

生成带有适当缩进的XML文件

来自分类Dev

带有属性注释的属性文件生成

来自分类Dev

带有值的Excel文本

来自分类Dev

生成带有格式的文档文本

来自分类Dev

从带有计数的向量生成文本

来自分类Dev

生成带有文本框的表

来自分类Dev

根据指定的数据属性创建一个带有值和文本的选择下拉选项

来自分类Dev

打印带有缩进的树

来自分类Dev

生成带有哈希值的UniqueUserID

来自分类Dev

laravel形式的文本,带有值扩展

来自分类Dev

带有自定义项目符号图像的CSS文本缩进

来自分类Dev

如何仅在带有缩进的2行超链接上对文本加下划线

来自分类Dev

HTML(带有少许php)-在换行时无法保持文本缩进

来自分类Dev

带有元素属性的车把插值?

来自分类Dev

带有属性的 XML 节点值

来自分类Dev

飞碟生成带有错误对齐文本的PDF

来自分类Dev

生成带有自定义文本的预览图像?

来自分类Dev

带有图像和文本的报价生成器

来自分类Dev

numpy:打印带有缩进的数组

来自分类Dev

带有缩进的Pyspark textFile json

来自分类Dev

内联描述列表,带有悬挂缩进

来自分类Dev

带有缩进的正确C函数格式

来自分类Dev

样式自动生成带有regex的html属性

来自分类Dev

根据数组中的对象属性生成带有头部的列表

来自分类Dev

带有属性文本的iOS UITextView从视图顶部不显示

来自分类Dev

带有属性文本的iOS UITextView从视图顶部不显示

来自分类Dev

HTML5,带有禁用属性的文本框

来自分类Dev

在带有属性文本的 UITextView 中实现撤消和重做

来自分类Dev

CSS-在IE上选择选项(带有背景图片)向左或向左缩进文本