如何检查给定的python字符串是否是另一个字符串的子字符串?

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

本问题已经有最佳答案,请猛点这里访问。

我有两个字符串,我想检查第一个字符串是否是另一个字符串的子字符串。python有这样的内置功能吗?


尝试这样使用in

1
2
3
4
>>> x = 'hello'
>>> y = 'll'
>>> y in x
True


尝试

1
isSubstring = first in theOther


string.find("substring")将帮助您。当没有子字符串时,此函数返回-1