str常用函数endswith()、split()、strip()
程序员文章站
2022-03-08 22:47:52
...
print(type('100m'.endswith('m'))) # 判断目标字符串是否以某字符结尾
print('100m'.endswith('m'))
>> <class 'bool'>
>> True
print(type('100m100m1'.split('m'))) # 将目标字符串以某字符分离
print('100m100m1'.split('m'))
>> <class 'list'>
>> ['100', '100', '1']
print(type('100m100m11'.strip('m'))) # 去除目标字符串尾部的某类字符
print('100m100m11mmm'.strip('m'))
>> <class 'str'>
>> 100m100m11
.
.
.
2019-03-20 15:37:48写于上海
上一篇: python endswith 用法
推荐阅读
-
Python常见字符串操作函数小结【split()、join()、strip()】
-
python练习题:利用切片操作,实现一个trim()函数,去除字符串首尾的空格,注意不要调用str的strip()方法
-
Python常用字符串替换函数strip、replace及sub用法示例
-
lr中常用函数以str开头函数
-
【常用函数】split()
-
python常用的格式化输出str.format()格式化函数对比
-
PHP常用函数strip_tags的详细介绍
-
php explode split str_split函数区别与实例_PHP教程
-
Python中strip() 函数和 split() 函数的理解
-
php str_split函数怎么用?