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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:56:03+00:00 2026-06-13T08:56:03+00:00

I want to create a regular expression for python snippet. import re pattern =

  • 0

I want to create a regular expression for python snippet.

import re
pattern = "\d*\.?\d+[Ee]?[+-]?\d*"
r = re.compile(pattern)
txt = """
12
.12
12.5
12.5E4
12.5e4
12.4E+4
12E4
12e-4
"""
x = r.findall(txt)
print(x)

for filtering all valid input from txt this code is fine
but invalid input such as

.12e, 12.3+4

are also allowed how can I fix this?

  • 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-13T08:56:04+00:00Added an answer on June 13, 2026 at 8:56 am

    Try changing your regex to the following:

    \d*\.?\d+(?:[Ee][+-]?\d+)?
    

    This makes it so that if the e or E is there, there is always at least one digit, and so that + and - are only valid if they follow the e or E.

    Note that you should be using a raw string literal to make sure the backslashes are escaped properly (doesn’t affect this string in particular, but if you tried to use something like \b in your regex you would see the difference):

    pattern = r"\d*\.?\d+(?:[Ee][+-]?\d+)?"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a regular expression where only numbers are allowed with max
How can I create a regular expression to search strings with a given pattern?
I want to create a regular expression that matches input text that starts with
I want to create a regular expression for strings which uses special characters [
I'm learning regular expressions and want to help me to create a regular expression
I would like to create a regular expression pattern that would succeed in matching
I want to create regular expression for password that has length of atleast 6
I want to create a regular expression for detecting the publication date for a
I just want to create a regular expression out of any possible string. var
I want to create a regular expression for subdomain like: In the textbox user

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.