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

Ask A Question

Stats

  • Questions 121k
  • Answers 121k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Markdown explicitly allows HTML markup so: "... incorrectly does not… May 12, 2026 at 12:20 am
  • Editorial Team
    Editorial Team added an answer These techniques are used to create client-side classes. When you… May 12, 2026 at 12:20 am
  • Editorial Team
    Editorial Team added an answer Sending and Receiving Files The sending and receiving of a… May 12, 2026 at 12:20 am

Related Questions

My dilemma: I'm passing my function a string that I need to then perform
Ok, here is my dilemma I have a database set up with about 5
Here is my scenario: I have a proxy that actually has the SSL Cert
First off, I realize most of this can also be done using ItemTemplates. If
Is there any way to redefine a class or some of its methods without

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.