I like to format all numbers like in math. is there a predefined function or is that just possible with substring and replace?
edit: my culture is de-ch
Best regards
I like to format all numbers like in math. is there a predefined function or is that just possible with substring and replace?
edit: my culture is de-ch
Best regards
Try this:
Console.WriteLine(1000000.ToString("#,##0").Replace(
CultureInfo.CurrentCulture.NumberFormat.NumberGroupSeparator, "'"));
Or
NumberFormatInfo likeInMath = new NumberFormatInfo()
{
NumberGroupSeparator = "'"
};
Console.WriteLine(1000000.ToString("#,##0", likeInMath));
use int.ToString() and an iFormatProvider.
also take a look here msdn.
var numformat = new NumberFormatInfo {
NumberGroupSeparator = "'",
NumberGroupSizes = new int[] { 3 },
NumberDecimalSeparator = "."
};
Console.WriteLine(1000000.ToString("N",numformat));
Try this
int input = Convert.ToInt32("1700");
string result = String.Format("{0:##,##}", input);
Or this
Console.WriteLine(1700.ToString("##,##", new NumberFormatInfo() { NumberGroupSeparator = "'" }));
I always Use this format
"#,##0;#,##0'-';0"
so You can use it in
int input = Convert.ToInt32("100000000");
string result = String.Format("{#,##0;#,##0'-';0}", input);