赞
赏
在开发过程中,有时候我们需要去除一个 字符串 中的右边的指定字符,在 Python 中,去除字符串中右边指定字符的函数为 rstrip() 。
rstrip() 函数只用于去除字符串右边的指定字符,而 strip() 函数则可以去除字符串两边的指定字符。需要去除的字符,我们通过参数 chars 传递进去。
S.rstrip([chars]) -> str
参数 | 描述 |
---|---|
S | 表示原字符串。 |
chars | 要去除的字符串 |
去除特定字符后的字符串。
使用 rstrip() 函数,去除字符串右边的指定字符
print("嗨客网(www.haicoder.net)")
# 使用 strip() 函数,去除字符串右边的指定字符
strHaicoder = "嗨客网(HaiCoder)ch"
print("strHaicoder =", strHaicoder.rstrip('ch'), sep='')
程序运行后,控制台输出如下:
首先,我们定义了一个字符串类型的 变量 strHaicoder,并且赋值为右边带指定字符的字符串,接着我们使用字符串的 rstrip() 函数去除变量 strHaicoder 的指定字符,并使用 print() 函数打印最终结果。
我们发现,字符串的右边的指定字符都已经被清除了。
使用 rstrip() 函数,去除字符串左右包含指定字符
print("嗨客网(www.haicoder.net)")
# 使用 strip() 函数,去除字符串左右包含指定字符
strHaicoder = "ch嗨客网 (HaiCoder)ch"
print("strHaicoder =[", strHaicoder.rstrip('ch'), "]", sep='')
程序运行后,控制台输出如下:
首先,我们定义了一个字符串类型的变量 strHaicoder,并且赋值为左右都带指定字符的字符串,接着我们使用字符串的 rstrip() 函数去除变量 strHaicoder 的右边指定字符,并使用 print() 函数打印最终结果。
我们发现,字符串的右边的指定字符已经被清除了,但左边的指定字符还是存在的。
在 Python 中,去除字符串中右边指定字符的函数为 rstrip() 。Python rstrip() 函数语法:
S.rstrip([chars]) -> str
使用 rstrip() 函数的默认参数,只可以去除字符串的右边的指定字符,中间的指定字符和左边的指定字符无法删除。