當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python String lstrip()用法及代碼示例


lstrip() 方法返回刪除了前導字符的字符串副本(基於傳遞的字符串參數)。

lstrip() 根據參數(指定要刪除的字符集的字符串)從左側刪除字符。

用法:

string.lstrip([chars])

參數:

  • chars(可選)- 指定要刪除的字符集的字符串。

如果未提供 chars 參數,則會從字符串中刪除所有前導空格。

返回:

lstrip() 返回去掉前導字符的字符串副本。

chars 參數中的所有字符組合都將從字符串左側刪除,直到第一個不匹配。

示例:lstrip() 的工作

random_string = '   this is good '

# Leading whitepsace are removed
print(random_string.lstrip())

# Argument doesn't contain space
# No characters are removed.
print(random_string.lstrip('sti'))

print(random_string.lstrip('s ti'))

website = 'https://www.programiz.com/'
print(website.lstrip('htps:/.'))

輸出

this is good 
   this is good 
his is good 
www.programiz.com/

相關用法


注:本文由純淨天空篩選整理自 Python String lstrip()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。