python .strip()、.split() (切片)、.join()(合併)、 .replace方法
阿新 • • 發佈:2019-01-02
strip()方法
Python strip() 方法用於移除字串頭尾指定的字元(預設為空格)。
str.strip([chars])
引數 chars – 移除字串頭尾指定的字元。
str = "0000000this is string example....wow!!!0000000"
print (str.strip( '0' ))
輸出:
this is string example....wow!!!
replace()
描述
Python replace() 方法把字串中的 old(舊字串) 替換成 new(新字串),如果指定第三個引數max,則替換不超過 max 次。
語法
replace()方法語法:
str.replace(old, new[, max])
引數
- old – 將被替換的子字串。
- new – 新字串,用於替換old子字串
- max – 可選字串, 替換不超過 max 次
返回值
返回字串中的 old(舊字串) 替換成 new(新字串)後生成的新字串,如果指定第三個引數max,則替換不超過 max 次。
例項
以下例項展示了replace()函式的使用方法:
#!/usr/bin/python
str = "this is string example....wow!!! this is really string";
print str.replace("is" , "was");
print str.replace("is", "was", 3);
輸出:
thwas was string example….wow!!! thwas was really string
thwas was string example….wow!!! thwas is really string
split()方法
Python split()通過指定分隔符對字串進行切片,如果引數num 有指定值,則僅分隔 num 個子字串
str.split(str=”“, num=string.count(str)).
引數 :
str – 分隔符,預設為空格。
num – 分割次數。
返回值 :
返回分割後的字串列表。
str = "Line1-abcdef \nLine2-abc \nLine4-abcd"
print (str.split( ))
print (str.split(' ', 1 ))
輸出:
['Line1-abcdef', 'Line2-abc', 'Line4-abcd']
['Line1-abcdef', '\nLine2-abc \nLine4-abcd']
join()方法
Python join() 方法用於將序列中的元素以指定的字元連線生成一個新的字串。
語法:
str.join(sequence)
引數:
sequence – 要連線的元素序列。
返回值:
返回通過指定字元連線序列中元素後生成的新字串。
>>>li = ['my','name','is','bob']
>>>' '.join(li) #以‘ ’連線
'my name is bob'
>>>'_'.join(li) #以‘_’連線
'my_name_is_bob'