我需要将数字转换为逗号分隔的格式,以便在C#
中显示。
例如:
1000 to 1,000
45000 to 45,000
150000 to 1,50,000
21545000 to 2,15,45,000
如何在C#
中实现这一点?
我尝试了以下代码:
int number = 1000;
number.ToString("#,##0");
但它不适用于lakhs
。
我想你可以通过创建一个自定义的数字格式信息来满足你的需求
NumberFormatInfo nfo = new NumberFormatInfo();
nfo.CurrencyGroupSeparator = ",";
// you are interested in this part of controlling the group sizes
nfo.CurrencyGroupSizes = new int[] { 3, 2 };
nfo.CurrencySymbol = "";
Console.WriteLine(15000000.ToString("c0", nfo)); // prints 1,50,00,000
如果只针对数字,那么你也可以进行
nfo.NumberGroupSeparator = ",";
nfo.NumberGroupSizes = new int[] { 3, 2 };
Console.WriteLine(15000000.ToString("N0", nfo));
这里有一个类似于您的线程,在数字的数千位添加逗号
这是一个非常适合我的解决方案
String.Format("{0:n}", 1234);
String.Format("{0:n0}", 9876); // no decimals
如果你想成为唯一的,并做你不必做的额外工作。这里是我为整数创建的一个函数,你可以按你想要的任何间隔放置逗号,只需为每千分之一的逗号放置3,或者你也可以做2或6,或者你喜欢的任何事情。
public static string CommaInt(int Number,int Comma)
{
string IntegerNumber = Number.ToString();
string output="";
int q = IntegerNumber.Length % Comma;
int x = q==0?Comma:q;
int i = -1;
foreach (char y in IntegerNumber)
{
i++;
if (i == x) output += "," + y;
else if (i > Comma && (i-x) % Comma == 0) output += "," + y;
else output += y;
}
return output;
}
您尝试过吗:
ToString("#,##0.00")
快速而肮脏的方式:
Int32 number = 123456789;
String temp = String.Format(new CultureInfo("en-IN"), "{0:C0}", number);
//The above line will give Rs. 12,34,56,789. Remove the currency symbol
String indianFormatNumber = temp.Substring(3);
一个简单的解决方案是将一个格式传递到ToString((方法:
string format = "$#,##0.00;-$#,##0.00;Zero";
decimal positiveMoney = 24508975.94m;
decimal negativeMoney = -34.78m;
decimal zeroMoney = 0m;
positiveMoney.ToString(format); //will return $24,508,975.94
negativeMoney.ToString(format); //will return -$34.78
zeroMoney.ToString(format); //will return Zero
希望这有帮助,