使用 XSLT 将 XML 转换为 CSV
如何使用 XSLT 将 XML 转换为 CSV(在 Excel 文件中显示)?
提供的 XML 值本身包含逗号,例如
<name>The,Bad Boy</name>
我的逻辑认为 "The"
& “Bad boy”
作为单独的值,因为它在 Excel 文件中打开后位于不同的列中。
How to convert XML to CSV (to be shown in Excel file) using XSLT?
Provided XML value itself contains comma, e.g.
<name>The,Bad Boy</name>
My logic considers "The"
& "Bad boy"
as separate values as it goes in different columns after opening in Excel file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
并不是说这种类型的问题以前不会得到回答:
顺便说一句,“CSV”并不意味着值不能包含逗号或必须用逗号分隔。
Excel 可以理解由逗号以外的其他字符(例如制表符)分隔的 CSV,并且包含分隔符的值可以用引号引起来。
It's not that this type of question would not have been answered before:
By the way, "CSV" does not mean that values cannot contain commas or must be separated by commas.
Excel can understand CSV that is separated by other characters than comma (tab, for example), and values that contain the separator can be enclosed in quotes.