[Python迷惑行为] 利用replace方法实现从右到左替换字符串

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)

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值