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

  • Home
  • SEARCH
  • 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 3807954
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T15:04:19+00:00 2026-05-19T15:04:19+00:00

How do I search a text file for a key-phrase or keyword and then

  • 0

How do I search a text file for a key-phrase or keyword and then print the line that key-phrase or keyword is in?

  • 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-19T15:04:20+00:00Added an answer on May 19, 2026 at 3:04 pm
    searchfile = open("file.txt", "r")
    for line in searchfile:
        if "searchphrase" in line: print line
    searchfile.close()
    

    To print out multiple lines (in a simple way)

    f = open("file.txt", "r")
    searchlines = f.readlines()
    f.close()
    for i, line in enumerate(searchlines):
        if "searchphrase" in line: 
            for l in searchlines[i:i+3]: print l,
            print
    

    The comma in print l, prevents extra spaces from appearing in the output; the trailing print statement demarcates results from different lines.

    Or better yet (stealing back from Mark Ransom):

    with open("file.txt", "r") as f:
        searchlines = f.readlines()
    for i, line in enumerate(searchlines):
        if "searchphrase" in line: 
            for l in searchlines[i:i+3]: print l,
            print
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How do I search a xmldata file node for the exact text that I
I have an autofill search that reads the contents of a text file (this
I require help to search a text file (log file) using c# and display
Is there a simple and lightweight program to search over a text file and
i have a text file with string abcdef I want to search for the
I am trying to search for a text in a file and store it
I'd like to search a Word 2007 file (.docx) for a text string, e.g.,
I am having utf-8 encoded file containing arabic text and I have to search
I have a UI with a search text box and a button that that
I have a DB having text file attributes and text file primary key IDs

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.