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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T05:51:51+00:00 2026-05-25T05:51:51+00:00

I have the following string and I would like to extract the elements (xx=yy)

  • 0

I have the following string and I would like to extract the elements (xx=”yy”) and what’s between the brackets. Here’s an example:

this too please

I’ve tried the following code but I’m quite a noob with regex.

re.sub(r'\(.*)\[\/caption\]', "tokens: %1 %2 %3 %4 %5", self.content, re.IGNORECASE) 

Thanks a lot in advance!

  • 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-25T05:51:51+00:00Added an answer on May 25, 2026 at 5:51 am

    It’s probably not working for you because .* is greedy. Try [^"]* in its place. [^"] means the set of all characters except the quote character. Also, as you’ve pointed out in the comments, the token syntax, is \\n, not %n. Try this:

    re.sub(r'\*)" align="([^"]*)" width="([^"]*)" caption="([^"]*)"\](.*)\[\/caption\]', "tokens: \\1 \\2 \\3 \\4 \\5", self.content, re.IGNORECASE)
    

    Do the contents of the caption tag span multiple lines? If they do .* won’t capture the newlines. You’ll need to us something like [^\x00]* instead. [^\x00] means the set of all charchters except the null character.

    re.sub(r'\*)" align="([^"]*)" width="([^"]*)" caption="([^"]*)"\]([^\x00]*)\[\/caption\]', "tokens: \\1 \\2 \\3 \\4 \\5", self.content, re.IGNORECASE)
    

    On the off chance that your strings can actually legitimately contain null characters, you would need to use the re.DOTALL flag instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following String First Last <first.last@email.com> I would like to extract first.last
I have string for example: 06.07.2010 (tor.) I would like to extract only 06.07.2010
Hi guys i have the following string &|L1|L2|L3|& I would like to extract L1
I have the following string and I would like to remove <bpt *>*</bpt> and
Supposed I have the following string: string str = <tag>text</tag>; And I would like
I have the following construction: for (String playerName: players) . I would like to
I have the following string that I would like to split on the \xA7
I have the following rss feed which I would like to query to get
Say for example I have the following string: var testString = Hello, world; And
Suppose I have following string: String asd = this is test ass this is

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.