xsl中用substring截取指定长度的内容

By | 2016年10月12日

在xsl中给某些地方赋值,可以使用substring方法:

<input name="region" type="hidden">
	<xsl:attribute name="value">
		<xsl:value-of select="substring(QUERYSTR/QUERYPOINT/REGION,1,14)"/>
	</xsl:attribute>
</input>

格式:

substring(节点路径,起始编号,长度)