Python 3 – String startswith() 方法
描述
startswith() 方法检查字符串是否以 str 开头,并可以选择限制匹配的开始和结束索引。
语法
startswith() 方法的语法如下 −
str.startswith(str, beg = 0,end = len(string));
参数
- str − 要检查的字符串。
-
beg − 这是设置匹配边界开始索引的可选参数。
-
end − 这是设置匹配边界开始索引的可选参数。
返回值
如果找到匹配的字符串,则此方法返回 true,否则返回 false。
示例
以下示例显示了使用 startswith() 方法的用法。
#!/usr/bin/python3
str = "this is string example....wow!!!"
print (str.startswith( 'this' ))
print (str.startswith( 'string', 8 ))
print (str.startswith( 'this', 2, 4 ))
结果
运行以上程序时,将产生以下结果 −
True
True
False