strip函數可以用來移除字符串的頭尾指定字符,默認移除字符串兩端的空格或換行符。
基本用法:
string.strip([chars])
其中,string
表示要操作的字符串,chars
表示要移除的字符集合。如果不指定chars
參數,默認移除字符串兩端的空格或換行符。
示例:
string = " hello world "
new_string = string.strip()
print(new_string) # 輸出:hello world
如果要移除字符串中指定的字符,可以通過傳入chars
參數來實現。
示例:
string = "hello world"
new_string = string.strip("hld")
print(new_string) # 輸出:ello wor
在上面的示例中,strip
函數移除了字符串"hello world"
中的字符"h"
,"l"
和"d"
。
另外,還有lstrip
函數和rstrip
函數分別用于移除字符串左側和右側的指定字符。用法與strip
函數類似。
更多用法可以參考Python官方文檔:https://docs.python.org/3/library/stdtypes.html#str.strip