Python中替换的三种方法

时间:2022-01-16 21:39:36

strip()    replace()      re.sub()

1.replace()是python的内置函数,字符类型.replace(old,new)

s1="你好2017"

s1.replace("2017","2018")

2. strip()删除指定字符,然只删除位于首位的字符。如果首位有空格,就无法删除这些字符了,不带任何参数时删除空白符(包括'\n', '\r',  '\t',  ' '),但是只能删除开头和结尾的,不能删除字符串中间的

s1="  OGHD    KHNN    \n  \r  \t"

s1.strip()

Python中替换的三种方法

s1.strip("NN")

.strip()这个函数还有两个版:lstrip()和rstrip(),分别是用来删除开头的“其他字符”的