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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T10:20:28+00:00 2026-06-08T10:20:28+00:00

I am trying to match a string with a regular expression and only one

  • 0

I am trying to match a string with a regular expression and only one of the two cases are working

String

ABCD 123 - Abcdef 0000
ABCD 123/DEFG123 - Abcdef 0000

RegEx

[A-Z]+ [A-Z0-9]{2,20} - [A-Z][a-z]+ [0-9]{4}

This matches the 1st one and Im trying to match it to both and this is the new expression I tried

[A-Z]+ [A-Z0-9\\/]{2,20} - [A-Z][a-z]+ [0-9]{4}

This matches DEFG123 - Abcdef 0000 out of the entire ABCD 123/DEFG123 - Abcdef 0000 but I am trying to get the entire string out of this. This is the code I’m using

regex = re.compile(expression)
r = regex.search(string)
  • 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-08T10:20:29+00:00Added an answer on June 8, 2026 at 10:20 am

    The escape is what’s wrong. Taken out:

    string_one = 'ABCD 123 - Abcdef 0000'
    string_two = 'ABCD 123/DEFG123 - Abcdef 0000'
    pattern = r'[A-Z]+ [A-Z0-9/]{2,20} - [A-Z][a-z]+ [0-9]{4}'
    regex = re.compile(pattern)
    if regex.search(string_one):
        print "string one matches!"
    if regex.search(string_two):
        print "string two matches!"
    
    # output:
    string one matches!
    string two matches!
    

    Note that my use of a raw string ( r'this is a raw string' ) is unnecessarily, but I obsessively use raw strings for patterns because they prevent most backslash interpolation.

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

Sidebar

Related Questions

I'm trying to extract/match data from a string using regular expression but I don't
I am trying to write a regular expression string match in vb.net. The condition
I'm trying to write a regular expression to match a string that may or
Can a regular expression match whitespace or the start of a string? I'm trying
I'm trying to come up with a regular expression that can match only characters
I'm trying to match a simple string against a regular expression pattern using the
I'm trying to write a regular expression which will match a string. For simplicity,
I'm trying to match a string against a pattern, but there's one thing I
I am trying to match a string only if it is not part of
I am trying to make a regular expression for a string that has at

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.