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

  • SEARCH
  • Home
  • 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 7762943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T14:32:24+00:00 2026-06-01T14:32:24+00:00

i am pretty ok with basic reg-ex. but this line of code used to

  • 0

i am pretty ok with basic reg-ex. but this line of code used to make the thousand separation in large numbers exceeds my knowledge and googling it quite a bit did also not satisfy my curiosity. can one of u please take a minute to explain to me the following line of code?

someString.replaceAll("(\\G-?\\d{1,3})(?=(?:\\d{3})++(?!\\d))", "$1,");

i especially don’t understand the regex structure "(?=(?:\d{3})++(?!\d))".

thanks a lot 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-06-01T14:32:25+00:00Added an answer on June 1, 2026 at 2:32 pm

    "(?=(?:\d{3})++(?!\d))" is a lookahead assertion.

    It means “only match if followed by ((three digits that we don’t need to capture) repeated one or more times (and again repeated one or more times) (not followed by a digit))”. See this explanation about (?:...) notation. It’s called non-capturing group and means you don’t need to reference this group after the match.

    "(\\G-?\\d{1,3})" is the part that should actually match (but only if the above-described conditions are met).

    Edit: I think + must be a special character, otherwise it’s just a plus. If it’s a special character (and quick search suggests that it is in Java, too), the second one is redundant.

    Edit 2: Thanks to Alan Moore, it’s now clear. The second + means possessive matching, so it means that if after checking as many 3-digit groups as possible it won’t find that they’re not followed by a non-digit, the engine will immediately give up instead of stepping one 3-digit group back.

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

Sidebar

Related Questions

it's a pretty basic question but I don't understand why the code below does
This sounds pretty basic but I ca't think of a neat straightforward method to
This obviously is pretty basic question but I haven't found my way around this:
This is a pretty basic MPI question, but I can't wrap my head around
This is a pretty basic question, and I imagine that it is, but I
This is pretty basic but I was coding and started wondering if there was
This is a pretty basic scenario but I'm not finding too many helpful resources.
This is probably pretty basic, but I'm trying to find out how I can
This is probably pretty basic, but I'm trying to figure out how to show
This seems pretty basic, but I can't find the best method to do this...

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.