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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T12:23:58+00:00 2026-06-09T12:23:58+00:00

Just like the question title. I’m new to Python and regular expressions. Hereby I

  • 0

Just like the question title.

I’m new to Python and regular expressions. Hereby I have to search for a specific word from a paragraph and show all indices of occurrence.

For example:

the paragraph is:

This is a testing text and used to test and test and test.

and the word:

test

The algorithm should return the index of non-overlapping occurences of 3 words test in the above paragraph (but not testing, because I mean search the whole word, not just substring).

Another example with the same paragraph and this “word”:

test and

The algorithm should return 2 occurrences of test and.

I guess I must use some regular expressions to find the pattern of that whole word, with preceding and following are punctuations such as . , ; ? -

After Googling I found something like re.finditer should be used but it seems that I haven’t found out the right way to go. Please help, thank you 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-06-09T12:24:00+00:00Added an answer on June 9, 2026 at 12:24 pm

    Yes, finditer is the way to go. Use start() to find the index of the match.


    Example:

    import re
    
    a="This is a testing text and used to test and test and test."
    print [m.start() for m in re.finditer(r"\btest\b", a)]
    print [m.start() for m in re.finditer(r"\btest and\b", a)]
    

    Output:

    [35, 44, 53]
    [35, 44]

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

Sidebar

Related Questions

I have a question just like in the title - Why codeigniter shopping cart
I have a question just like in the title - Why codeigniter shopping cart
Just like described in title of question - I would like to have default
Just a knowledge question which I would like to ask: For example, I have
I have a question that I just don't feel like I've found a satisfactory
Just like in the title. I got GridView control that displaying some data from
so i continue from this question YouTube: get youtube title+ image+description like facebook `
The question title just about says it all. I have a ASP.NET MVC 2
I have the same problem like this question: Custom title bar in PreferenceActivity? After
Just like stackoverflow, there is a many-to-many relationship between Question and Tag. After running

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.