xsl 删除所有“字符串”对于任何布尔值,在转换为 json 输出之前输入引号

发布于 2024-11-04 19:03:50 字数 186 浏览 0 评论 0原文

我正在使用 xsl 将 xml 转换为 json。

josn 布尔值显示为 myboolean:"true"。它们应该显示为 myboolean:true (true 周围不带引号)。

在转换为任何布尔值的 json 输出之前,如何使 xsl 删除所有“字符串”类型引号?

I am using xsl to convert an xml into json.

The josn boolean values are showing up as myboolean:"true". They should be showing up as myboolean:true (without the quotes around true).

How can I make xsl remove all 'string' type quotes before converting to json output for any boolean values?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的心境我的脸 2024-11-11 19:03:50

您可以使用 translate() 函数从字符串值中删除任何双引号 " 和单引号/撇号 ' 字符,将他们化为乌有:

translate(.,'"'','')

You can use the translate() function to strip out any double-quote " and single quote/apostrophe ' characters from our string value, translating them into nothing:

translate(.,'"'','')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文