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 6785779
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:10:06+00:00 2026-05-26T17:10:06+00:00

How can I insert to a string comma (,) after every 3 position starting

  • 0

How can I insert to a string comma (,) after every 3 position starting from last?

input             desired output    

9876567846678     9,876,567,846,678  
567               567
1234              1,234

I used one method like first divide the whole string by three position and then while merging appending coma by three three position.

Is there any better solution? Is there function available to do this trick in java?

Edit :
LAS_VEGAS answer will format the number based on the locale. But i want to format it to a fixed locale …
how can i do tht?

  • 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-26T17:10:06+00:00Added an answer on May 26, 2026 at 5:10 pm

    Yes, there is a “trick” in Java:

    public static String addCommas(int num) {
        DecimalFormat df = new DecimalFormat();
        DecimalFormatSymbols dfs = new DecimalFormatSymbols();
        dfs.setGroupingSeparator(',');
        df.setDecimalFormatSymbols(dfs);
        return df.format(num);
    }
    
    System.out.println(addCommas(123456789));
    

    EDIT:
    In case you want your output to be independent from locale you can use the method below. It starts from the end so there is no need to reverse the string and should be quite efficient:

    public static String addCommas(int num) {
        StringBuilder s = new StringBuilder(Integer.toString(num));
        for(int i = s.length() - 3; i > 0; i -= 3) {
            s.insert(i, ',');
        }
        return s.toString();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a way to insert a comma after every character in a string.
How can one insert a Unicode string CSS into CleverCSS ? In particular, how
I want something that can check if a string is SELECT , INSERT ,
How can i insert string Pyrénées, France' in mysql database. How can i remove
Greetings. Imagine you've been given a string (from somewhere you can't control). In that
How can I insert a string at the beginning of each line in a
What is the preferred way to insert strings that can contain both single and
I know I can loop over the string or build a regex or invert
I can insert annotations on specific datasets on the graph but I wish to
I know that you can insert multiple rows at once, is there a way

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.