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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T01:33:33+00:00 2026-06-09T01:33:33+00:00

I am trying to match the following strings: 9 9. 9.5 .5 This is

  • 0

I am trying to match the following strings:

9
9.
9.5
.5

This is what I’ve produced so far to accomplish this:

(?<acreage>(?(\d+)((\.\d*)?)|(\.\d+)))

When I pass in 9.5, it returns NULL and .5 for acreage. I need it to pass back 9.5. What am I doing wrong?

  • 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-09T01:33:34+00:00Added an answer on June 9, 2026 at 1:33 am

    So you have four situations:

    1. Match something like x
    2. Match something like x.y
    3. Match something like x.
    4. Match something like .y

    So here you go:

    \d+\.\d+|\d+\.?|\.d+
    

    You can get rid of either of the last two possibilities by making digits in the first group optional, but not both. For instance:

    \d*\.\d+|\d+\.?
    

    Or, with a match group:

    (?<acreage>\d*\.\d+|\d+\.?)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to match the following types of strings: 123456 1234.56 123,456 1,234.56
I'm trying to match strings of the following format: S->A S->AbCd S->A|b|C|d S->Ab|B|cde|dB That
I'm trying to match the following items in the string pcode : u followed
what is the following regular expressions trying to match: expect -re classType=(.{3}) ? what
I am trying to round a number in JavaScript to match the following Excel
I've got IIS7.5 running, and I'm trying to match an explicit URL. The following
currently I'm trying to find a regular expression with the following condition: Match: FOO_.*
I'm following this guide: http://www.math.umd.edu/~dcarrera/ruby/0.3/chp_01/programs.html and I'm trying to create my first ruby program.
I'm trying to match the '12345' from a url in this form: http://domain.com/folder/title_of_this_12345 So
Suppose I was trying to match the following expression using regex.h in C++, and

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.