python判断字符串中内容
时间: 2023-05-23 19:06:58 浏览: 77
是否
包含指定的字符或子字符串有哪些方法?
A:有以下几种方法:
1. 使用in关键字:
s = "Hello, World!"
if "Hello" in s:
print("字符串中包含Hello")
2. 使用find()方法:
s = "Hello, World!"
if s.find("World") != -1:
print("字符串中包含World")
3. 使用startswith()和endswith()方法:
s = "Hello, World!"
if s.startswith("Hello"):
print("字符串以Hello开头")
if s.endswith("World!"):
print("字符串以World!结尾")
4. 使用正则表达式re模块:
import re
s = "Hello, World!"
if re.search("Hello", s):
print("字符串中包含Hello")
5. 使用count()方法:
s = "Hello, World!"
if s.count("l") > 1:
print("字符串中包含两个及以上的l")
阅读全文