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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:54:57+00:00 2026-06-17T08:54:57+00:00

Regex experts please help! I have the following two examples: ‘(JEN) This is a

  • 0

Regex experts please help! I have the following two examples:

'(JEN) This is a sentence.'
'This is another sentence (412).'

I am trying to extract the different possible elements of these two sentences in the following way (knowing that there are three possible element types):

['JEN', 'This is a sentence', None]
[None, 'This is another sentence', 412]

Does anybody know how to solve this?

I tried the following regex:

r'(\(([A-Z]{3})\))?\s*([\w- ]+)?\s*(\(([0-9]{3})\))?'
r'(?:\(([A-Z]{3})\)\s*)(?:([\w- ]+))(?:\(([0-9]{3})\))' # Passive Groups

And for both I get errors for Invalid regular expressions.

Any ideas why?

  • 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-17T08:54:57+00:00Added an answer on June 17, 2026 at 8:54 am

    sre_constants.error: bad character range occurs because [\w- ] is interpreted as a range. It’s possible to use [\w -], but generally - should be escaped inside character classes: [\w\- ].

    Also, your expressions are not equivalent (aside from grouping). I’m not sure whether that was intentional, but note that the non-capturing version of (regex)? is (?:regex)?, not (?:regex). In order to behave akin to the first expression, the second one should be:

    r'(?:\(([A-Z]{3})\))?\s*([\w\- ]+)?\s*(?:\(([0-9]{3})\))?'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a regex expert to help out on this one. Examples I've found
Simple regex question. I have a string on the following format: this is a
This might be a piece of cake for java experts. Please help me out:
Are there any regex experts who can help me clean up the following source
I am trying get the Regex right for the following scenario but have some
Any regex gurus around here? its driving me crazy. Say I have this string:
I have the following regex: (?<=\.\d+?)0+(?=\D|$) I'm running it against a string which contains
I am not a expert in this field so please help me out and
This seems simple but I have never done a regex so just a simple
A simple question for most regex experts I know, but I'm trying to return

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.