python学习笔记

python的替换函数:

出现的使用场景之一:新建文件夹时过滤掉非法字符

    .replace(rgExp, replaceText, max)

    re.sub(pattern, repl, string, count, flags)

    .strip(stripString)


.replace():

python学习笔记_第1张图片
.replace()

re.sub():

python学习笔记_第2张图片
re.sub()

.strip():

python学习笔记_第3张图片
当参数为空时默认只删除头尾的空白符,不能删除中间的
python学习笔记_第4张图片
lstrip删除左边开头的字符,rstrip删除右边尾端的字符

你可能感兴趣的:(python学习笔记)