XSLT 2.0:使用正则表达式将所有匹配的部分提取到数组中

时间:2016-01-23 20:27:40

标签: xslt-2.0

如何将匹配正则表达式模式的字符串的所有部分收集到数组中?

<xsl:variable name="matches" select="function('abc_Xza_Y_Sswq', '_[A-Z]')"/>

返回

('_X', '_Y', '_S')

1 个答案:

答案 0 :(得分:1)

XSLT / XPath 2.0中没有数组,但您可以编写一个使用analyze-string返回字符串序列的函数:

<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
  xmlns:mf="http://example.com/mf"
  exclude-result-prefixes="xs mf">

<xsl:function name="mf:extract" as="xs:string*">
    <xsl:param name="input" as="xs:string"/>
    <xsl:param name="pattern" as="xs:string"/>
    <xsl:analyze-string select="$input" regex="{$pattern}">
        <xsl:matching-substring>
            <xsl:sequence select="."/>
        </xsl:matching-substring>
    </xsl:analyze-string>
</xsl:function>

<xsl:template match="/">
    <xsl:variable name="matches" select="mf:extract('abc_Xza_Y_Sswq', '_[A-Z]')"/>
    <xsl:value-of select="$matches" separator=", "/>
</xsl:template>

</xsl:transform>