XSLT XML文件的转换

时间:2017-06-21 13:36:48

标签: xml xslt

我是XML + XSLT的初学者......

我有一个像这样的XML文件:

<root>
<NumNum>
   <Ligne>ZZZZZZ</Ligne>
</NumNum>
<Designation>
            <Ligne>Couverture 4 pages</Ligne>
            <Ligne>Format fini : 23.00 x 23.00 cm</Ligne>
            <Ligne>Format ouvert : 46.00 x 23.00 cm</Ligne>
            <Ligne>Papier : COUCHE MODERNE DEMI MAT 300 g/m²</Ligne>
            <Ligne>Impression : Quadri recto/verso</Ligne>
            <Ligne>Eléments fournis : fichiers numériques</Ligne>
            <Ligne>Rainage</Ligne>
            <Ligne>Pelliculage soft touch R°</Ligne>
            <Ligne/>
            <Ligne>Intérieur  28 pages</Ligne>
            <Ligne>Papier : OFFSET 140 g/m²</Ligne>
            <Ligne>Impression : Quadri recto/verso</Ligne>
            <Ligne>Eléments fournis : fichiers numériques</Ligne>
            <Ligne/>
            <Ligne>Façonnage : assemblage + 2 points métal</Ligne>
            <Ligne/>
            <Ligne>Poids théorique d'un exemplaire : 135.42 Gr</Ligne>
            <Ligne/>
            <Ligne>en carton(s)</Ligne>
            <Ligne>Livraison : 75 PARIS</Ligne>
            <Ligne/>
        </Designation>
</root>

我需要读取包含以下内容的行的值:

<Ligne>Impression : Quadri recto/verso</Ligne>

但是,这条线的位置会随机变化......但总是在里面:

<Designation>
</Designation>

所以,我正在考虑使用XSLT +正则表达式来查找任何行开头:

"Impression :"

我认为我们需要使用循环收集内部的所有行,但任何帮助和/或提示&amp;我们将不胜感激; - )

以下是我用来获取值的XSLT:

    <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    exclude-result-prefixes="xs"
    version="1.0">
    <xsl:strip-space elements="myLines_Ligne"/>
    <xsl:template match="/root/Designation">
        </root/Designation>
            <xsl:apply-templates/>
            <xsl:call-template name="GetLine">
                <xsl:with-param name="ListeLigne" select="/root/Designation"/>
            </xsl:call-template>
        </root/Designation>
    </xsl:template>
    <xsl:template name="GetLine">
        <xsl:param name="ListeLigne"/>
        <myLines_Ligne>
            <xsl:for-each select="$ListeLigne">
                <xsl:value-of select="./Ligne"/>
                <xsl:if test="position()!=last()">
                    <xsl:text>&#10;</xsl:text>
                </xsl:if>
            </xsl:for-each>
        </myLines_Ligne>
    </xsl:template>
       <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
   </xsl:template>
</xsl:stylesheet>

我试图用它来读取我想要提取的行,但没有成功...... XSLT只返回第一行“ZZZZZZ”: - (

所以,如果你们中的一些人能够寻求帮助,我们将不胜感激; - )

1 个答案:

答案 0 :(得分:0)

如果要提取以"Impression :"开头的行,那么为什么不这样做?

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="/root">
    <result>
        <xsl:value-of select="Designation/Ligne[starts-with(., 'Impression :')]"/>
    </result>
</xsl:template>

</xsl:stylesheet>

<强>结果

<?xml version="1.0" encoding="UTF-8"?>
<result>Impression : Quadri recto/verso</result>

请注意,这只会提取符合条件的第一行。要获得所有这些,您必须执行以下操作:

<xsl:template match="/root">
    <results>
        <xsl:for-each select="Designation/Ligne[starts-with(., 'Impression :')]">
            <result>
                    <xsl:value-of select="."/>
            </result>
        </xsl:for-each>
    </results>
</xsl:template>