将 HTML 引号替换为 XSLT 中的纯文本
我们使用 XSLT 将 RIXML 文件转换为 XML。我们的 RIXML 包含以下文本:
<Title><![CDATA[Looking into the future: Reiterate ‘Buy’]]></Title>
8216 是左引号,8217 是右引号。
我如何将这些 HTML 代码替换为它们的纯文本表示形式,或者更简单地说,只是一个单引号?这是 XSLT 版本 1.0。
We are using XSLT to translate a RIXML file to XML. Our RIXML contains the following text:
<Title><![CDATA[Looking into the future: Reiterate ‘Buy’]]></Title>
8216 is a left quote and 8217 is a right quote.
How would I replace these HTML codes with their plain text representation, or more simply, just a single quote? This is XSLT version 1.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现这个功能对我来说效果很好。我称其为替换我需要的所有字符:
I came upon this function which worked well for me. I call it to replace all the characters I need to: