python判断字符串里有没有pdf
时间: 2023-11-26 19:06:31 浏览: 67
可以使用 Python 中的 in 关键字来判断字符串中是否包含某个子字符串,例如:
```python
s = "这是一个包含 pdf 的字符串"
if "pdf" in s:
print("字符串中包含 pdf")
else:
print("字符串中不包含 pdf")
```
输出结果为:
```
字符串中包含 pdf
```
如果你需要判断字符串中是否包含多个子字符串,可以使用正则表达式来实现。例如,以下代码可以判断字符串中是否包含多个文件类型(pdf、doc、txt):
```python
import re
s = "这里有一个 pdf 文件和一个 doc 文件,还有一个 txt 文件"
if re.search(r'(pdf|doc|txt)', s):
print("字符串中包含 pdf、doc 或 txt")
else:
print("字符串中不包含 pdf、doc 或 txt")
```
输出结果为:
```
字符串中包含 pdf、doc 或 txt
```
阅读全文