Home » C#

C# | Printing a float number with thousand separator using String.Format() method

C# | String.Format() method example: Here, we are going to learn how to print a float number with thousand separator using String.Format() method in C#?
Submitted by IncludeHelp, on November 02, 2019

To print a float number with thousand separators, we can use String.Format() method, here is the example.

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            //Thousand separator
            Console.WriteLine("Thousand Separators");
            
            Console.WriteLine(String.Format("{0:0,0.0}", 9876.67));     
            Console.WriteLine(String.Format("{0:0,0}", 9876.67));
            Console.WriteLine(String.Format("{0:0,0.0}", 987654321.67));
            Console.WriteLine(String.Format("{0:0,0}", 987654321.67));

            Console.WriteLine();  
        }
    }
}

Output

Thousand Separators
9,876.7
9,877
987,654,321.7
987,654,322
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.