本文主要是介绍【Python系列】Python字符串处理函数rstrip和lstrip,strip,replace,endswith,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Date: 2017/12/31
Author: SoaringLee
目录
strip(),rstrip(),lstrip()
replace()
endswith()
startswith()
strip(),rstrip(),lstrip()
s.rstrip(str):去除字符串s中右边的指定字符串;
s.lstrip(str):去除字符串s中左边的指定字符串;
s.strip(str):去除字符串s两边的指定字符串。
若str为空,默认为空字符。
replace()
对象.replace(rgExp,replaceText,max)</
这篇关于【Python系列】Python字符串处理函数rstrip和lstrip,strip,replace,endswith的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!