本文介绍了将字符串转换为小数分隔符“."的最佳方法和“,"麻木不仁的方式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
应用程序处理代表来自不同文化的小数的字符串.例如1.1"和1,1"是同一个值.
Application deals with strings that represent decimals that come from different cultures. For example "1.1 and "1,1" is the same value.
我使用了 Decimal.TryParse
标志组合,但无法达到我想要的结果.1,1"毕竟变成了11"或0".
I played with Decimal.TryParse
flags combinations but couldn't achieve the result I want. "1,1" became "11" or "0" after all.
是否可以在一行代码中将此类字符串转换为十进制,而无需预先将,"字符替换为."或玩 NumberFormat.NumberDecimalSeparator
?
Is it possible to convert such strings to decimal in one line of code without pre-replacing "," char to "." or playing with NumberFormat.NumberDecimalSeparator
?
你如何处理这种情况?
提前感谢您!
推荐答案
你有以下可能:
- 您了解这种文化
- You know the culture
- 使用计算机安装的当前文化设置
- 您让用户决定在您的程序中设置他的文化 -> 用户设置
- 您必须做出决定:您必须定义并记录您的决定
- 猜测:你尝试解析,然后尝试解析,然后尝试……直到你得到有效的数字
这篇关于将字符串转换为小数分隔符“."的最佳方法和“,"麻木不仁的方式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!