How do I check if a given Python string is a substring of another one? [duplicate]

Posted on

Question :

How do I check if a given Python string is a substring of another one? [duplicate]

I have two strings and I would like to check whether the first is a substring of the other. Does Python have such a built-in functionality?

Asked By: snakile

||

Answer #1:

Try using in like this:

>>> x = 'hello'
>>> y = 'll'
>>> y in x
True
Answered By: Andrew Hare

Answer #2:

Try

isSubstring = first in theOther
Answered By: Martin Stone

Answer #3:

string.find("substring") will help you. This function returns -1 when there is no substring.

Answered By: Daniel Wehner

Leave a Reply

Your email address will not be published. Required fields are marked *