DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • C# String Format Examples
  • Swift: Master of Decoding Messy JSON
  • Secrets in Code: Understanding Secret Detection and Its Blind Spots
  • From HTTP to Kafka: A Custom Source Connector

Trending

  • If You Can Survive a Toddler, You Can Ship LLMs in Production
  • Getting Started With Agentic Workflows in Java and Quarkus
  • Why Round-Robin Won't Save You: Load Balancing Challenges in Data Streaming Services With Heterogeneous Traffic
  • Good Data, Bad Metric: A Mutation Testing Pattern for Analytics Engineering
  1. DZone
  2. Coding
  3. Languages
  4. How to Pad a Number With a Leading Zero With C#

How to Pad a Number With a Leading Zero With C#

By 
Jalpesh Vadgama user avatar
Jalpesh Vadgama
·
Apr. 10, 12 · Tutorial
Likes (0)
Comment
Save
Tweet
Share
30.3K Views

Join the DZone community and get the full member experience.

Join For Free

Recently I was working with a project where I was in need to format a number in such a way which can apply leading zero for particular format. So after doing such R and D I have found a great way to apply this leading zero format.

I was having need that I need to pad number in 5 digit format. So following is a table in which format I need my leading zero format.

1-> 00001

20->00020

300->00300

4000->04000

50000->5000

So in the above example you can see that 1 will become 00001 and 20 will become 00200 format so on. So to display an integer value in decimal format I have applied interger.Tostring(String) method where I have passed “Dn” as the value of the format parameter, where n represents the minimum length of the string. So if we pass 5 it will have padding up to 5 digits.

So let’s create a simple console application and see how its works. Following is a code for that.

using System;
 
namespace LeadingZero
{
  class Program
  {
      static void Main(string[] args)
      {
          int a = 1;
          int b = 20;
          int c = 300;
          int d = 4000;
          int e = 50000;
 
          Console.WriteLine(string.Format("{0}------>{1}",a,a.ToString("D5")));
          Console.WriteLine(string.Format("{0}------>{1}", b, b.ToString("D5")));
          Console.WriteLine(string.Format("{0}------>{1}", c, c.ToString("D5")));
          Console.WriteLine(string.Format("{0}------>{1}", d, d.ToString("D5")));
          Console.WriteLine(string.Format("{0}------>{1}", e, e.ToString("D5")));
          Console.ReadKey();
      }
  }
}

 

As you can see in the above code I have use string.Format function to display value of integer and after using integer value’s ToString method. Now Let’s run the console application and following is the output as expected.

image

Here you can see the integer number are converted into the exact output that we requires. That’s it you can see it’s very easy. We have written code in nice clean way and without writing any extra code or loop. Hope you liked it. Stay tuned for more.. Till than happy programming.

Strings Computer programming C# (programming language)

Published at DZone with permission of Jalpesh Vadgama. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • C# String Format Examples
  • Swift: Master of Decoding Messy JSON
  • Secrets in Code: Understanding Secret Detection and Its Blind Spots
  • From HTTP to Kafka: A Custom Source Connector

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook