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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:46:00+00:00 2026-05-11T07:46:00+00:00

My dilemma: I’m passing my function a string that I need to then perform

  • 0

My dilemma: I’m passing my function a string that I need to then perform numerous regex manipulations on. The logic is if there’s a match in the first regex, do one thing. If no match, check for a match with the second and do something else, if not check the third, and so forth. I could do something like this:

if re.match('regex1', string):     match = re.match('regex1', string)     # Manipulate match.group(n) and return elif re.match('regex2', string):     match = re.match('regex2', string)     # Do second manipulation [etc.] 

However, this feels unnecessarily verbose, and usually when that’s the case it means there’s a better way that I’m either overlooking or don’t yet know about.

Does anyone have a suggestion for a better way to do this (better from a code-appearance standpoint, a memory usage standpoint, or both)?

  • 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. 2026-05-11T07:46:01+00:00Added an answer on May 11, 2026 at 7:46 am

    Similar question from back in september: How do you translate this regular-expression idiom from Perl into Python?

    Using global variables in a module maybe not the best way to do it, but converting it into a class:

    import re  class Re(object):   def __init__(self):     self.last_match = None   def match(self,pattern,text):     self.last_match = re.match(pattern,text)     return self.last_match   def search(self,pattern,text):     self.last_match = re.search(pattern,text)     return self.last_match  gre = Re() if gre.match(r'foo',text):   # do something with gre.last_match elif gre.match(r'bar',text):   # do something with gre.last_match else:   # do something else 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My dilemma is that I need to compile a large amount of projects and
I have a little dilemma that maybe you can help me sort out. I've
Okay, my dilemma is this. I have an admin page that I use to
I need a serviceable shell for MSYS. This is my current dilemma: The default
Interesting dilemma here. I need the ability for users to add links from their
My dilemma is that I am losing my ResultSet from the primary table when
The dilemma I'm using a before_filter in my controller that restricts access to admins.
I am having a dilemma in the logic of this particular issue. Forgive me
I'm not sure if I phrased that correctly but here's my dilemma. I inherited
My dilemma is this: I have a PHP page with a form that includes

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.