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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:04:03+00:00 2026-05-11T21:04:03+00:00

I have written regexes for recognizing float and int but they don’t seem to

  • 0

I have written regexes for recognizing float and int but they don’t seem to work (code below).

{
    string sumstring = "12.098";

    Regex flt = new Regex(@" ^[0-9]*(\.[0-9]*)");
    Regex ent = new Regex("^[0-9]+");

    if (d_type.IsMatch(sumstring))
    {
        Console.WriteLine(sumstring + " " + "dtype");
    }

    Match m = ent.Match(sumstring);

    if (m.Success)
    {
        Console.WriteLine("int");
    }
    else if (flt.IsMatch(sumstring))
    {
        Console.WriteLine("float");
    }
}

Where is the mistake?

  • 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-11T21:04:03+00:00Added an answer on May 11, 2026 at 9:04 pm

    First, I don’t think regular expressions are really the best tool for this job. I would simply use the Double.TryParse() and Int32.TryParse() functions.

    Second, you’re missing a whole lot of test cases with your regular expressions:

    • Integer
      • 5 (covered)
      • +5 (not covered)
      • -5 (not covered)
    • Double
      • 5.0 (covered)
      • +5.0 (not covered)
      • -5.0 (not covered)
      • 5.0E5 (not covered)
      • 5.0E+5 (not covered)
      • 5.0E-5 (not covered)
      • +5.0E5 (not covered)
      • +5.0E+5 (not covered)
      • +5.0E-5 (not covered)
      • -5.0E5 (not covered)
      • -5.0E+5 (not covered)
      • -5.0E-5 (not covered)
    • Edge Cases
      • 2^32 + 1 (should be recognized as Double even though it looks like Integer)

    All of these (except maybe the edge case) would be immediately covered by using the library instead of hand-rolling a regex.

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

Sidebar

Related Questions

I have written following code for the client of RMI. But getting java.rmi.ConnectException: Connection
I have always written regexes like this <A HREF=([^]*) TARGET=_blank>([^<]*)</A> but I just learned
I have written a code to check if a string has the key in
I have written this code inside a servlet to delete certain records from three
I have written this code in JavaScript and works perfectly fine when I include
Have written the following code: m_selectCategoryTableWidget = new QTableWidget; m_selectCategoryTableWidget->setRowCount(0); m_selectCategoryTableWidget->setColumnCount(2); m_selectCategoryTableWidget->setHorizontalHeaderLabels(QStringList()<<tr(Category)<<tr(Number of items));
I have written a generic class class MyClass : MyClass<string> { } //this line
Have written some RoR sites in the past, but never bothered too much at
I have written the following code. I know that a higher order function is
I have written some Rspec test cases in my spec/models/season_spec.rb file. They are as:-

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.