xsl 删除所有“字符串”对于任何布尔值,在转换为 json 输出之前输入引号
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
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: