python依次替换正则表达式匹配的字符

python一个一个替换正则表达式匹配的字符
大家都知道怎么用python的re.sub替换所有的字符串,如果是一个一个替换呢?
我提供一个python2的解决方案

import re
def onebyone_replace(string,index):
        pattern = re.compile(ur'\d')
        if pattern.search(string[index:])==None:
                return
        else:
                        
                start_index,end_index=pattern.search(string[index:]).span()
                new_string=pattern.sub('niexinming',string[index:],1)
                print string[:index]+new_string
                onebyone_replace(string,index+end_index)

onebyone_replace("1-2-3",0)

结果是:

niexinming-2-3
1-niexinming-3
1-2-niexinming

指定位置替换参数
其中appoint_num是指定的位置:

import re
def onebyone_appoint_replace(string,index,num,appoint_num):
        pattern = re.compile(ur'\d')
        if pattern.search(string[index:])==None:
                return
        else:
                orgin_value=pattern.search(string[index:]).group()
                start_index,end_index=pattern.search(string[index:]).span()
                new_string=pattern.sub(orgin_value+'niexinming',string[index:],1)
                if num==appoint_num: print string[:index]+new_string
                num=num+1
                onebyone_appoint_replace(string,index+end_index,num,appoint_num)

appoint_number=2
onebyone_appoint_replace("1-2-3",0,0,appoint_number)

结果:

1-2-3niexinming
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值