1

我想从包含 html 数据的一个字段的 xml 中获取普通文本。我无法在模板上设置条件。请建议我任何解决方案。

 <?xml version="1.0" encoding="UTF-8"?> 
 <workdetail>  
<field name="summaryText1">&lt;UL style="MARGIN-TOP: 0in" type=disc&gt;
&lt;LI style="TEXT-ALIGN: justify;MARGIN-BOTTOM: 0pt" class=MsoNormal&gt;&lt;SPAN style="mso-fareast-font-family: 'timesnewroman'; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin; mso-bidi-font-style: italic"&gt;&lt;FONT size=2&gt;Manage the daily activities of the HOD s office.&lt;?xml:namespace prefix = o /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="MARGIN-BOTTOM: 0pt" class=MsoNormal&gt;&lt;SPAN style="mso-fareast-font-family: 'timesnewroman'; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin; mso-bidi-font-style: italic"&gt;&lt;FONT size=2&gt;Handle and manage all communication, correspondence and filing of documents. &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="MARGIN-BOTTOM: 0pt" class=MsoNormal&gt;&lt;SPAN style="mso-fareast-font-family: 'timesnewroman'; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin; mso-bidi-font-style: italic"&gt;&lt;FONT size=2&gt;Fix appointments, arrange for meetings, conferences etc.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/LI&gt;
 </workdetail>

mu xsl 文件为

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output  indent="yes" encoding="utf-8"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<workdetail>
 <xsl:apply-templates select="*" />
</workdetail>
</xsl:template>
<xsl:template match="*:workdetail">
 <xsl:variable name="text" select="*:field[starts-with(@name,'summaryText1')]"/>
         <xsl:choose>

    <xsl:when test="contains($text, '&lt;')">

        <xsl:value-of select="substring-after($text, '&lt;')"/>



                <xsl:variable name="text" select="substring-after($text, '&gt;')"/>
    </xsl:when>

    <xsl:otherwise>

        <xsl:value-of select="$text"/>

    </xsl:otherwise>

</xsl:choose>
</xsl:stylesheet>

这将返回 > 标签之后的所有内容。我可以在其中传递更多的值,这将只返回文本文档。

4

1 回答 1

4

使用 Saxon 9.5 PE,您应该能够使用http://www.saxonica.com/documentation/index.html#!functions/saxon/parse-html

<xsl:template match="workdetail/field[@name = 'summaryText1']">
  <xsl:value-of select="saxon:parse-html(.)"/>
</xsl:template>

你在哪里

<xsl:stylesheet xmlns:saxon="http://saxon.sf.net/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">...</xsl:stylesheet>

在样式表的根元素上声明。

如果您无法访问 HTML 解析器,您可以尝试使用 areplace和正则表达式去除标记,但以下是关于如何处理该问题的建议,正则表达式未经过彻底测试:

<xsl:template match="workdetail/field[@name = 'summaryText1']">
  <xsl:value-of select="replace(., '&lt;/?\w+[^&lt;]*&gt;', '')"/>
</xsl:template>
于 2013-08-30T08:52:02.797 回答