将字符串转换为小数分隔符“."的最佳方法和“,"麻木不仁的方式?

Best way to convert string to decimal separator quot;.quot; and quot;,quot; insensitive way?(将字符串转换为小数分隔符“.的最佳方法和“,麻木不仁的方式?)
本文介绍了将字符串转换为小数分隔符“."的最佳方法和“,"麻木不仁的方式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

应用程序处理代表来自不同文化的小数的字符串.例如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 ?

你如何处理这种情况?

提前感谢您!

推荐答案

你有以下可能:

  1. 您了解这种文化
  1. You know the culture
  1. 使用计算机安装的当前文化设置
  2. 您让用户决定在您的程序中设置他的文化 -> 用户设置

  • 你不懂文化

  • You do not know the culture

    1. 您必须做出决定:您必须定义并记录您的决定
    2. 猜测:你尝试解析,然后尝试解析,然后尝试……直到你得到有效的数字

  • 这篇关于将字符串转换为小数分隔符“."的最佳方法和“,"麻木不仁的方式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

    本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

    相关文档推荐

    DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
    Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
    Programmatically show the desktop(以编程方式显示桌面)
    c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
    InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
    LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)