XSLT:XML:替换函数/功能
我想
words<block>words</block>
从这个节点在 xml 文档
<text>words bli!wordsbli!</text>
bli 中生成以下 html!表示将出现在 xml 文档节点中随机位置的标签。可以换bli吗!使用 xslt 函数?
I would like to product the following html
words<block>words</block>
From this node in an xml doc
<text>words bli!wordsbli!</text>
the bli! represents a tag that will occur in random spots with in the node of the xml doc. Is it possible to replace the bli! with using an xslt function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XSLT 1.0 中没有内置任何内容来执行基本的字符串替换。
这篇文章介绍了实现此功能的好方法。
它的名字如下:
There is nothing built into XSLT 1.0 that will do basic string replacement.
This post goes over a good method for implementing this functionality.
Here's how it is called: