python-字符串的startswith和endswith函数
程序员文章站
2023-12-21 14:19:28
...
# coding:utf-8
'''
startswith和endswith的功能
startswith:判断字符串开始位置,是否是某个成员(元素)
endswith:判断字符串结尾位置,是否是某个成员(元素)
startswith和endswith的用法
用法:
string.startswith(item) ---> item:你想查询匹配的元素,返回一个布尔值
string.endswith(item) ---> item:你想查询匹配的元素,返回一个布尔值
startswith和endswith的注意事项
'''
result = 'my name is dewei'.startswith('my')
result1 = 'my name is dewei'.endswith('my')
print(result,result1)
str1 = 'My name is xiaomu, I’m from BeiJing.'
print(str1.startswith('xiaomu',11,36))
print(str1.endswith('BeiJing',11,35))
推荐阅读
-
python-字符串的startswith和endswith函数
-
Python 利用内置set函数对字符串和列表进行去重的方法
-
Python中的startswith和endswith函数使用实例
-
Python中用startswith()函数判断字符串开头的教程
-
php中有关字符串的4个函数substr、strrchr、strstr、ereg介绍和使用例子
-
支持中文和其他编码的php截取字符串函数分享(截取中文字符串)
-
字符串长度函数strlen和mb_strlen的区别示例介绍
-
php获取url字符串截取路径的文件名和扩展名的函数
-
Oracle实现字符串拼接和分离功能的方法(WM_CONCAT函数)
-
比较discuz和ecshop的截取字符串函数php版