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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T11:34:46+00:00 2026-06-01T11:34:46+00:00

I have the following method: protected BigDecimal stringToBigDecimal(String value) throws ParseException { if (Pattern.matches([\\d,.]+,

  • 0

I have the following method:

protected BigDecimal stringToBigDecimal(String value) throws ParseException
{
    if (Pattern.matches("[\\d,.]+", value))
    {
        Number n = NumberFormat.getInstance().parse(value);

        return new BigDecimal(n.doubleValue());
    }
    else
    {
        throw new ParseException("Invalid String", -1);
    }
}

This value throws an exception (as expected), so this regExpr works:

String wrongAmount = "1,U35,345.43";

But when I try this:

protected BigDecimal stringToBigDecimal(String value) throws ParseException
{
    if (Pattern.matches("[\\D&&[^.,]]+", value))
    {
        throw new ParseException("Invalid String", -1);
    }

    Number n = NumberFormat.getInstance().parse(value);

    return new BigDecimal(n.doubleValue());
}

No exception is thrown, but why?
First I thought that there is a logical problem with the “except for” expression so I tried this value with this pattern:

String wrongAmount = "1U3534543";

protected BigDecimal stringToBigDecimal(String value) throws ParseException
{
    if (Pattern.matches("[\\D]+", value))
    {
        throw new ParseException("Invalid String", -1);
    }

    Number n = NumberFormat.getInstance().parse(value);

    return new BigDecimal(n.doubleValue());
}

…but this doesn’t match? What did I understand wrong on the “non-digit expression” \\D.. The value contains an “U”, so why doesn’t it match?

  • 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-01T11:34:47+00:00Added an answer on June 1, 2026 at 11:34 am

    You are not properly negating you expressions.

    In the first example, you say “if my input matches only digits, commas and dots”, then it’s ok.

    In your second example (and I am not sure that it does what you meant but that’s another story), you meant to say “if the input matches only non-digits, non-commas, non-dots chars”, but your input contains digits, so the match won’t work.

    In your last example, same thing, you are saying “if the input matches only non-digit chars” but again you have digits in your input

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

Sidebar

Related Questions

i have the following method in a usercontrol protected override void Render(HtmlTextWriter writer) {
I have the following method public static void SerializeToXMLFile(Object obj,Type type, string fileName) {
Say I have the following hierarchy: public class MyClass { protected virtual void Method()
I have following method in my class which extends JTable: protected void setTableCursor(Cursor cursor)
I have the following method in a base class that implements System.ComponentModel.INotifyPropertyChanged: protected virtual
I have the following classes: abstract class Transport{ protected String name; protected Transport(String name){
I have following code in extending type (in F#) which invokes a protected method
Currently I have <ListView> <TextView> </ListView> and the following method works perfectly @Override protected
I have the following code: class myClass { private delegate string myDelegate(Object bj); protected
I have following serverside onclick method: protected void btnSearch_Click(object sender, EventArgs e) { if

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.