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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T14:17:05+00:00 2026-06-05T14:17:05+00:00

I’m working on a little Python script that is supposed to match a series

  • 0

I’m working on a little Python script that is supposed to match a series of authors and I’m using the re-module for that. I came across something unexpected and I have been able to reduce it to the following very simple example:

>>> import re
>>> s = "$word1$, $word2$, $word3$, $word4$"
>>> word = r'\$(word\d)\$'
>>> m = re.match(word+'(?:, ' + word + r')*', s)
>>> m.groups()
('word1', 'word4')

So I’m defining a ‘basic’ regexp that matches the main parts of my input, with some recognizable features (in this case I used the $-signs) and than I try to match one word plus a possible additional list of words.

I’d have expected that m.groups() would’ve displayed:

>>> m.groups()
('word1', 'word2', 'word3', 'word4')

But apparently I’m doing something wrong. I’d like to know why this solution does not work and how to change it, such that I get the result I’m looking for. BTW, this is with Python 2.6.6 on a Linux machine, in case that matters.

  • 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-05T14:17:07+00:00Added an answer on June 5, 2026 at 2:17 pm

    Although you’re re is matching every $word#$, the second capture group is continuously getting replaced by the last item matched.

    Let’s take a look at the debugger:

    >>> expr = r"\$(word\d)\$(?:, \$(word\d)\$)*"
    >>> c = re.compile(expr, re.DEBUG)
    literal 36
    subpattern 1
      literal 119
      literal 111
      literal 114
      literal 100
      in
        category category_digit
    literal 36
    max_repeat 0 65535
      subpattern None
        literal 44
        literal 32
        literal 36
        subpattern 2
          literal 119
          literal 111
          literal 114
          literal 100
          in
            category category_digit
        literal 36
    

    As you can see, there are only 2 capture groups: subpattern 1 and subpattern 2. Every time another $word#$ is found, subpattern 2 gets overwritten.

    As for a potential solution, I would recommend using re.findall() instead of re.match():

    >>> s = "$word1$, $word2$, $word3$, $word4$"
    >>> authors = re.findall(r"\$(\w+)\$", s)
    >>> authors
    ['word1', 'word2', 'word3', 'word4']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I am reading a book about Javascript and jQuery and using one of the
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a

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.