如何从字符串中删除所有尾随破折号?

时间:2010-12-11 02:16:09

标签: python

示例:

string1 = 'title--'
string2 = 'title-'
string3 = 'this-is-a-title----'

>> print doSomething(string1)
>> title

>> print doSomething(string2)
>> title

>> print doSomething(string3)
>> this-is-a-title

1 个答案:

答案 0 :(得分:9)

string1.rstrip("-")
# "title"
string2.rstrip("-")
# "title"
string3.rstrip("-")
# "title-is-a-title"