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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T14:15:45+00:00 2026-06-03T14:15:45+00:00

Python regular expression I have a string that contains keywords but sometimes the keywords

  • 0

Python regular expression I have a string that contains keywords but sometimes the keywords dont exist and they are not in any particular oder. I need help with the regular expression.

Keywords are:

Up-to-date
date added
date trained

These are the keywords i need to find amongst a number of other keywords and they may not exist and will be in any order.

What the sting looks like

<div>
<h2 class='someClass'>text</h2>

 blah blah blah Up-to-date blah date added blah

</div>

what i’ve tried:

regex = re.compile('</h2>.*(Up\-to\-date|date\sadded|date\strained)*.*</div>') 

regex = re.compile('</h2>.*(Up\-to\-date?)|(date\sadded?)|(date\strained?).*</div>')

re.findall(regex,string) 

The outcome i’m looking for would be:

If all exists
['Up-to-date','date added','date trained']

If some exists
['Up-to-date','','date trained']
  • 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-03T14:15:47+00:00Added an answer on June 3, 2026 at 2:15 pm

    Does it have to be a regex? If not, you could use find:

    In [12]: sentence = 'hello world cat dog'
    
    In [13]: words = ['cat', 'bear', 'dog']
    
    In [15]: [w*(sentence.find(w)>=0) for w in words]
    Out[15]: ['cat', '', 'dog']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Python regular expression that contains a group which can occur zero
I have a Python regular expression that matches a set of filenames. How to
I'm trying to write a python regular expression that will match both these URLs:
I have a python function which uses a regular expression to match one (the
My Questions is Is there any regular expression engine that does Just-In-Time compiling during
Regular expressions are great for text editing. But sometimes they aren't quite enough. For
I want to write a regular expression that will match the following string a
I have this regular expression in python: '<input type=hidden name=GALX value=(?P<galx>[a-zA-Z0-9_]+)>' I want an
I am trying to write a regular expression in Python that will match either
I have read the Google python regex tutorial about regular expression and tried to

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.