如何转换 XML 文化/语言环境?
我有一个 XML,其中所有值都根据给定的区域性进行字符串化(浮点数的小数分隔符,日期的月/日顺序)。
我必须将此 XML 转换为另一种文化。如何以最小的努力做到这一点?
I have a XML where all values are stringified accordingly to a given culture (decimal separator for floats, month/day order for dates).
I have to convert this XML to another culture. How to do that with minimal effort?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XML 是一种转换格式,因此最好将其保持为文化不变的格式。我不建议格式化 XML。
也就是说,如果您仍然必须这样做,由于某人的奇怪要求,您将必须将每个字符串解析为适当的类,并使用不同的区域性再次格式化它。我实际上无法给你一个例子,因为我不知道你指的是哪种语言/技术。我只能假设您指的是 C#/.Net...
编辑
您还可以转换文化不变的 XML 使用 XSL。
XML is a transition format, so it is best to keep it in culture-invariant format. I wouldn't recommend formatting XML.
That said, if you still have to do that, because of somebody's strange requirement, you will have to parse each string to appropriate class and format it again using different culture. I can't actually give you an example, as I don't know what language/technology you are referring to. I can only assume that you meant C#/.Net...
EDIT
You can also transform culture-invariant XML using XSL.