xslt中有没有类似于replace之类的方法
时间:2005-11-17
来源:互联网
在进行xslt转换中,想把某一个属性中的逗号去掉,该怎么做呀?
例如想从
<root>
<r a="1" b="1"/>
<r a="2" b="10,302"/>
</root>
转成
<root>
<r a="1" b="1"/>
<r a="2" b="10302"/>
</root>
例如想从
<root>
<r a="1" b="1"/>
<r a="2" b="10,302"/>
</root>
转成
<root>
<r a="1" b="1"/>
<r a="2" b="10302"/>
</root>
作者: eagles 发布时间: 2005-11-17
找了些资料。是xpath里面的函数。
the functions required for XPath 2.0, XQuery 1.0 and XSLT 2.0
fn:translate(string1,string2,string3)
Converts string1 by replacing the characters in string2 with the characters in string3
Example: translate('12:30','30','45')
Result: '12:45'
Example: translate('12:30','03','54')
Result: '12:45'
Example: translate('12:30','0123','abcd')
Result: 'bc:da'
the functions required for XPath 2.0, XQuery 1.0 and XSLT 2.0
fn:translate(string1,string2,string3)
Converts string1 by replacing the characters in string2 with the characters in string3
Example: translate('12:30','30','45')
Result: '12:45'
Example: translate('12:30','03','54')
Result: '12:45'
Example: translate('12:30','0123','abcd')
Result: 'bc:da'
作者: 单身 发布时间: 2005-11-23
up
作者: kancnspace 发布时间: 2005-12-27
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28