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 always written regexes like this <A HREF=([^]*) TARGET=_blank>([^<]*)</A> but I just learned
I have written some code in my VB.NET application to send an HTML e-mail
I have written a site in Prototype but want to switch to jQuery. Any
I have written an assembly I don't want other people to be able to
I have written jquery code to show description if I hover on a hyperlink.
I have written a VERY simple MVC application which just displays a single string
I have written a function to convert string to integer if ( data !=
I have written in my code like this... $this->User->saveAll($this->data, array('validate'=>'first')); $this->User->saveAll($this->data, array('validate'=>false)); 'validate'=>false will
I have written code to save an image which is generated by the application.
I have written an AIR Application that downloads videos and documents from a server.

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.