我有如下的XML文件,
<sec>
<para>Section 1- TOC</para>
<para>Section 4* Main</para>
<para>Section 3$ Basic content</para>
<para>Section 11_ Section 10</para>
<para>Section 15@ Appendix 6</para>
</sec>
我需要使用函数在text()
节点中获取数字后跟'Section'字符串。
示例:
<xsl:function name="abc:get-section-number">
<xsl:param name="string" as="xs:string"/>
<xsl:sequence select="tokenize($string,'\d+')[1]"/>
</xsl:function>
此示例返回数字值之前的子字符串,但我需要在“Section”字符串之后获取数字值..(输出值应为1,4,3,11和15)
我尝试了一些内置函数(string-before,strong-after,matches ..)但是找不到任何合适的解决方案。
任何人都可以建议我获得这个数字值的方法吗?
答案 0 :(得分:2)
您可以使用analyze-string
,如评论中已建议的那样,请参阅http://xsltransform.net/3NJ38Zy了解有效的工作示例
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:abc="http://example.com/abc"
exclude-result-prefixes="xs abc">
<xsl:function name="abc:get-section-number" as="xs:integer">
<xsl:param name="string" as="xs:string"/>
<xsl:analyze-string select="$string" regex="^Section\s+([0-9]+)">
<xsl:matching-substring>
<xsl:sequence select="xs:integer(regex-group(1))"/>
</xsl:matching-substring>
</xsl:analyze-string>
</xsl:function>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="para">
<xsl:copy>
<xsl:value-of select="abc:get-section-number(.)"/>
</xsl:copy>
</xsl:template>
</xsl:transform>