python判断字符串包含某个字符串
时间: 2023-12-01 21:39:35 浏览: 187
在Python中,判断一个字符串是否包含某个子字符串可以使用以下几种方法:
1. 使用成员操作符 in,例如:
```
strA = "wonderful"
strB = "der"
result = strB in strA
print(result)
```
输出结果为True。
2. 使用字符串的find()方法,例如:
```
strA = "wonderful"
strB = "der"
result = strA.find(strB)
if result != -1:
print("包含")
else:
print("不包含")
```
输出结果为包含。
3. 使用字符串的rfind()方法,与find()方法类似,只不过是从右边开始查找,例如:
```
strA = "wonderful"
strB = "der"
result = strA.rfind(strB)
if result != -1:
print("包含")
else:
print("不包含")
```
输出结果为包含。
4. 使用正则表达式,例如:
```
import re
strA = "wonderful"
strB = "der"
result = re.search(strB, strA)
if result:
print("包含")
else:
print("不包含")
```
输出结果为包含。
阅读全文