HomeCSharpFormatting Number with Leading Zeroes in C#

Formatting Number with Leading Zeroes in C#

The .NET Framework provides the format strings like “D” and “X” which can be easily used by the developers to format the number with leading zeroes in C#.

For example , assume that the number is 589 and you want it to print as 00589 , you could use the format specifier “D5” where 5 is the total number of digits of the number to output.

Formatting Number with Leading Zeroes in C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;

namespace GinktageApp
{
    internal class Program
    {
        private static void Main(string[] args)
        {
            int InputNumber = 00589;
            Console.WriteLine(InputNumber.ToString("D5", CultureInfo.InvariantCulture));
            Console.ReadLine();
        }
    }
    
}

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...