XSL获取属性值时可以正则匹配吗?
<note a1="" a2="" a3="" a4="" a5="" b1="" b2="" b3="" />
xsl:
<td><xsl:value-of select="count(@*)"/></td> //是获取所有属性的个数
我想获取属性名称以“a”开头的属性的个数!我要怎么写?
[解决办法]
<xsl:value-of
select = string-expression
disable-output-escaping = "yes" | "no" />
字符串表达式!没写正则表达式.
[解决办法]
count(//note/@*[starts-with(name(),'a')])