replace方法原型
str.replace(old, new[, max])
- old -- 将被替换的子字符串。
- new -- 新字符串,用于替换old子字符串。
- max -- 可选次数, 替换不超过 max 次
由于字符串类型自带的replace方法默认且只允许实现从左向右检索,当出现需要从右向左检索的时候可以使用以下方法实现:
通过全部取反再取反的方法实现(original)
def right_replace(string, old, new, max=1):
return string[::-1].replace(old[::-1], new[::-1], max)[::-1]
计数方法
引自http://blog.csdn.net/c465869935/article/details/71106967
def rreplace(self, old, new, *max):
count = len(self)
if max and str(max[0]).isdigit():
count = max[0]
return new.join(self.rsplit(old, count))
测试用例
right_replace('[1234::8012:80.1.1.1]:80',':80','')
right_replace('eeeeee', 'e', 'E', 3)
right_replace('eeeeee', 'e', 'E', 2)