替换 xslt 中的字符串
我使用的是xslt1.0。我的输入是
<xsl:variable name="string">width:12pt;border-width:13pt</xsl:variable>
我想将 -width: 替换为其他字符串,但不是宽度:(以 - 开头的宽度应该单独替换)。如何在 xslt 1.0 中执行此操作。
I am using xslt1.0. My input is
<xsl:variable name="string">width:12pt;border-width:13pt</xsl:variable>
I want to replace the -width: into some other string, but not the width:(width starting with - alone should replaced).How to do it in xslt 1.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XSLT 1.0 中没有替换功能。您可以在此处找到(XSLT 中的 String.Replace())一个可以做到这一点的模板。
你可以这样使用它:
There is no replace function in XSLT 1.0. You can find here (String.Replace() in XSLT) a template that can do that.
You can use it like this: