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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T23:53:25+00:00 2026-05-24T23:53:25+00:00

Python is not my best language, and so I’m not all that good at

  • 0

Python is not my best language, and so I’m not all that good at finding the most efficient solutions to some of my problems. I have a very large string (coming from a 30 MB file) and I need to check if that file contains a smaller substring (this string is only a few dozen characters). The way I am currently doing it is:

if small_string in large_string:
    # logic here

But this seems to be very inefficient because it will check every possible sequence of characters in the file. I know that there will only be an exact match on a newline, so would it be better to read the file in as a list and iterate through that list to match?

EDIT: To clear up some confusion on “matching on a newline only”, here’s an example:

small_string = "This is a line"
big_string = "This is a line\nThis is another line\nThis is yet another"

If I’m not mistake, the in keyword will check all sequences, not just every line.

  • 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-24T23:53:25+00:00Added an answer on May 24, 2026 at 11:53 pm

    You can use one of these algorithms:

    • Rabin–Karp string search algorithm

    • Knuth–Morris–Pratt algorithm (aka KMP) see an implementation here

    Although I believe KMP is more efficient, it’s more complicated to implement.The first link includes some pseudo-code that should make it very easy to implement in python.

    you can look for alternatives here: http://en.wikipedia.org/wiki/String_searching_algorithm

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

Sidebar

Related Questions

I'm teaching myself Python and my most recent lesson was that Python is not
I have some code written in Python which can not be transferred to a
practising some python, which is a pretty easy language to grab up. I have
So I have a few private git repositories that are different language implementations (Python,
As python does not have concept of constants, would it be possible to raise
I read that Python does not actually support 2D arrays but rather an array
I do NOT have python/ruby enabled. My Question: I frequently have to write things
I'm using Python 2.x [not negotiable] to read XML documents [created by others] that
Using the code print('{0} is not'.format('That that is not')) in Python 3.1.1, I get
Which programming language is it easier to support developers in (namely developers that have

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.