XSLT
self321
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Xslt 常用手册
变量 [定义变量] <xsl:variable name="MessageType" select="/root/messageType"/> [引用变量] <xsl:attribute name = "Type"> <xsl:value-of select="$MessageType"/> </xsl:attribute>...原创 2019-07-19 15:45:12 · 195 阅读 · 0 评论 -
Xslt 常用方法函数
[截取字符串] <!-- 假设/root/BODY/RouteName/@Value = ABCD_EF --> <!-- 按照字符截取 --> <xsl:variable name="LINE_SIDE" select="substring-after(/root/BODY/RouteName/@Value,'_')"/> //结果:EF &...原创 2019-07-19 16:01:34 · 829 阅读 · 0 评论
分享