gpt4 book ai didi

c#:字符串到整数的转换?

转载 作者:太空宇宙 更新时间:2023-11-03 17:13:51 25 4
gpt4 key购买 nike

我有格式为 Rs.2, 50,000 的字符串。现在我想将字符串值读取为 250000 并插入数据库(假设 2,50,000 卢比来自第三方,如 Web 服务、wcf 服务或其他应用程序)。是否有任何直接的解决方案而不使用String.Replace() 你能写出删除逗号的代码吗?

最佳答案

这样的东西对我有用

string numb="2,50,000";
int.TryParse(numb, NumberStyles.AllowThousands, CultureInfo.InvariantCulture.NumberFormat,out actualValue);

关于c#:字符串到整数的转换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6123155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com