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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T05:13:21+00:00 2026-05-30T05:13:21+00:00

I tested the following regexp for US prices (delimiter comma, separator dot) which is

  • 0

I tested the following regexp for US prices (delimiter comma, separator dot) which is running fine:

 ^[1-9][0-9]{0,2}(?:,?[0-9]{3}){0,3}(\.[0-9]{2})?$

It works, prices like 30,000.000 are refused. Only 2 decimals are accepted.

I tried to exchange them for handling European prices:

^[1-9][0-9]{0,2}(?:.?[0-9]{3}){0,3}(\,[0-9]{2})?$

but it does not work, prices like 30.000,000 are accepted, which is wrong. Only 2 decimals should be accepted.

What’s wrong in these 2 regexps?

  • 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-30T05:13:22+00:00Added an answer on May 30, 2026 at 5:13 am

    In regex, . is a special character so when you want to match a literal dot you need to escape it with a backslash (\.). This is not the case for commas, so you can leave them unchanged.

    In your attempt you switched the , and the . which left you with an unescaped . and a \, at the end, when you actually want to switch the , and the \. like this:

    ^[1-9][0-9]{0,2}(?:\.?[0-9]{3}){0,3}(,[0-9]{2})?$
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please advise.. In the following code(Tested. Will work fine) public class Exp_Test { public
Would someone kindly explain why the following bit of code works, I've tested it
i have tested following code which might print 0 and 2 but it print
I have the following string, which matches the following RegEx string. I would like
I tested the following code in firefox scratchpad and got interesting result? var date=new
[All of the following was tested using Visual Studio 2008 SP1] In C++, const
Using jQuery's dialog I came across the following quirk (tested in FF3): User selects
I was writing a pluginable function when I noticed the following behavior (tested in
Can someone please explain the following How was the first JDK release unit Tested?
Why doesn't following code work correctly in FireFox 3.6? I have tested in IE7,

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.