split replace strip是字符串中内置的三个函数,作用分别是分割 替换 去空格
1:split
split(a,b):用指定的字符(a)分割字符串,可以限制分割的次数(b),返回一个列表
输出结果如下:
但若指定的字符出现在字符串的开头 结尾 或中间连续出现时,列表中会出现空元素,需要对列表进行一个过滤
输出结果如下:
2:replace
replace(a,b,c):用新字符(a),代替字符串中的指定字符(b),可以指定替换的次数©,默认为替换所有
输出结果如下:
3:strip
strip:去掉字符串前后连段的空格。
输出结果如下
另外,还可以使用lstrip和rstrip去掉左端或右端的空格
输出结果如下:
特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台“网易号”用户上传并发布,本平台仅提供信息存储服务。
Notice: The content above (including the pictures and videos if any) is uploaded and posted by a user of NetEase Hao, which is a social media platform and only provides information storage services.