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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:46:32+00:00 2026-05-14T00:46:32+00:00

In Perl, I would write: $x = abbbc; $x =~ s/(b+)/z/; print Replaced $1

  • 0

In Perl, I would write:

$x = "abbbc";
$x =~ s/(b+)/z/;
print "Replaced $1 and ended up with $x\n";
# "Replaced bbb and ended up with azc"

How do I do this in Python — do a regular-expression string replacement and record what it was that got replaced?

  • 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-05-14T00:46:32+00:00Added an answer on May 14, 2026 at 12:46 am

    Python does not simultaneously return a match and a substitution. Calling group(0) on a returned Match object will find the matched substring:

    >>> r=re.compile('(b+)')
    >>> r.search('abbbc')
    <_sre.SRE_Match object at 0x7f04af497af8>
    >>> r.search('abbbc').group(0)
    'bbb'
    >>> r.sub('z', 'abbbc')
    'azc'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Perl Regular expressions. How would i go about ignoring white space
Would it be possible to integrate Python (and/or Perl) and Ruby? I've looked at
In Perl if I want to have a multi-layered hash, I would write: $hash_ref->{'key1'}->{'key2'}='value';
perl -E '$i=@{[`zypper lr`]}-2;map{`zypper rr $_`}1..$i' What would be a good way to write
Perl code fragment: my $export = $doc; $export =~ s:\.odt:\.pdf:; How would this be
I would like to construct a sqlite3 database query in python, then write it
How would I write a Perl CGI script that receives a file via a
I would like to write a Perl function that gets a GFF3 filename and
I would like to write a xml parsing script in Perl that prints all
I would like a Perl regex that matches any contiguous subset of the string

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.