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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T09:12:03+00:00 2026-06-18T09:12:03+00:00

i am not able to figure out why the below two print statements gives

  • 0

i am not able to figure out why the below two print statements gives different
results. can any one please explain me? i am just giving a small sample example. in the first print statement table is getting replaced by a special character and the second one gives correct one.

import re  

def tblcnv( str ):  
    rtval = re.sub("table", "chair", str)  
    return rtval  

rval = "<table is in the place where you sit daily "  
tblcnt = re.sub(r"<(table.*place)", tblcnv('\1'), rval)  

print tblcnt  
print tblcnv("<table is in the place where you sit daily")
  • 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-18T09:12:04+00:00Added an answer on June 18, 2026 at 9:12 am

    According to the re.sub manual it takes a function which “is called for every non-overlapping occurrence of pattern”. As those occurrences are actually match objects you are best of using a simple lambda expression which extracts the group(1) of the match objects and passes it to your tblcnv function.

    import re
    
    def tblcnv( str ):  
        rtval = re.sub("table", "chair", str)  
        return rtval  
    
    rval = "<table is in the place where you sit daily "  
    tblcnt = re.sub(r"<(table.*place)", lambda m: tblcnv(m.group(1)), rval)  
    
    print tblcnt  
    print tblcnv("<table is in the place where you sit daily")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When running below programme i am getting this exception. Not able to figure out
I am not able to figure out why it is not tracing value for
I am not able to figure out how the graphs shown here are constructed?
I am stuck with a simple problem but not able to figure out the
In SQL Server 2005, I'm trying to figure out why I'm not able to
I am not able to figure out why this does happen. On all non-webkit
i feel really dumb for not being able to figure this out despite this
I am getting an error which i am not able to figure out what
I can not figure out what the heck is happening here. What I expect
I have below similar report in Jaspersoft iReport Designer, but not able to figure

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.