Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6778513
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:16:29+00:00 2026-05-26T16:16:29+00:00

I Have a string in the form 123456789. While displaying it on the screen

  • 0

I Have a string in the form “123456789”.
While displaying it on the screen I want to show it as 123-456-789.
Please let me knwo how to add the “-” for every 3 numbers.
Thanks in Advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T16:16:30+00:00Added an answer on May 26, 2026 at 4:16 pm

    I’ll go ahead and give the Regex based solution:

    string rawNumber = "123456789";
    var formattedNumber = Regex.Replace(rawNumber, @"(\d{3}(?!$))", "$1-");
    

    That regex breaks down as follows:

    (        // Group the whole pattern so we can get its value in the call to Regex.Replace()
      \d     // This is a digit
      {3}    // match the previous pattern 3 times
      (?!$)  // This weird looking thing means "match anywhere EXCEPT the end of the string"
    )        
    

    The "$1-" replacement string means that whenever a match for the above pattern is found, replace it with the same thing (the $1 part), followed by a -. So in "123456789", it would match 123 and 456, but not 789 because it’s at the end of the string. It then replaces them with 123- and 456-, giving the final result 123-456-789.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to store data in string form to MySQL. I have created the
I have an xml in the form of a string. Let's say that the
I have a date in string form and input timeformat(ex: hh:mm tt). I want
I have string in the form [3339:1.6101369,1062:1.5,5751:1.5,6376:1.5, ... ] I want to iterate through
I have string form of date: 2011-03-27T09:39:01.607 and I want to format it to
I have a string in the form MMM/dd/yyyy, ie. May/21/2010. Now I want to
I have a string in the form $string = 'London,Paris,Birmingham' and I want to
I have a string of the form foo-bar-1.23-4, and I need to split at
I have an array of integers in string form: var arr = new string[]
I have a string which contain tags in the form < tag > .

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.