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


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


在本教程中,我們將借助示例了解 Python String rstrip() 方法。

rstrip() 方法返回刪除了尾隨字符的字符串副本(基於傳遞的字符串參數)。

示例

title = 'Python Programming   '

# remove trailing whitespace from title
result = title.rstrip()
print(result)

# Output: Python Programming

用法:

用法:

string.rstrip([chars])

參數:

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

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

如果未提供 chars 參數,則從字符串中刪除右側的所有空格。

返回:

rstrip() 返回字符串的副本,其中去除了尾隨字符。

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

示例:rstrip() 的工作

random_string = 'this is good    '

# Trailing whitespace are removed
print(random_string.rstrip())

# 'si oo' are not trailing characters so nothing is removed
print(random_string.rstrip('si oo'))

# in 'sid oo', 'd oo' are the trailing characters, 'ood' is removed from the string
print(random_string.rstrip('sid oo')) website = 'www.programiz.com/' 

print(website.rstrip('m/.'))

輸出

this is good
this is good
this is g
www.programiz.co

相關用法


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