亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術(shù)文章
文章詳情頁

python 正則表達(dá)式替換

瀏覽:76日期:2022-07-05 14:29:33

問題描述

最近遇到一個(gè)正則表達(dá)式替換的問題

time數(shù)據(jù)里面的每條數(shù)據(jù)前面都有[0]= [1]= [2]= [3]=這個(gè)索引:

['time']={[0]={['status']=true,['ac']=1,['bg']=2},[1]={['status']=true,['ac']=1,['bg']=2},[2]={['status']=true,['ac']=1,['bg']=2},}

因?yàn)橐恍┰蚯懊娴乃饕龥]了,只能用正則來加上,問題是time里面的數(shù)據(jù)數(shù)量是不一樣的

['time']={{['status']=true,['ac']=1,['bg']=2},}['time']={{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},}['time']={{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},}

有沒有方法自動在前面加順序的[0]= [1]= [2]= [3]=

補(bǔ)充:

錯(cuò)誤的數(shù)據(jù)是在一起的,而且time里面的數(shù)據(jù)順序不相同,如下:

['time1']={{['status']=true,['ac']=1,['bg']=2},},['time2']={{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},},['time3']={{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},}

想改成:

['time1']={[0]={['status']=true,['ac']=1,['bg']=2},},['time2']={[0]={['status']=true,['ac']=1,['bg']=2},[1]={['status']=true,['ac']=1,['bg']=2},},['time3']={[0]={['status']=true,['ac']=1,['bg']=2},[1]={['status']=true,['ac']=1,['bg']=2},[2]={['status']=true,['ac']=1,['bg']=2},}

問題解答

回答1:

>>> import re>>> s=’['time']={{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},}’>>> n=0>>> def repl(m): global n rslt=’[%d]=%s’%(n,m.group(0)) n+=1 return rslt>>> p=re.compile(r’{[^{}]+},’)>>> p.sub(repl,s)’['time']={[0]={['status']=true,['ac']=1,['bg']=2},[1]={['status']=true,['ac']=1,['bg']=2},[2]={['status']=true,['ac']=1,['bg']=2},}’回答2:

i = 0def func(x): global i s = ’[%d]=%s’ % (i,x) i += 1 return s import rea = ’['time']={{['status']=true,['ac']=1,['bg']=2},{['status']=true,['ac']=1,['bg']=2},}’print re.sub(’{['status'’,lambda m:func(m.group(0)),a)

寫的不好,見笑了

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 尤物在线观看网站 | 亚洲美女福利视频在线 | 性视频播放免费视频 | 一级一级人与动毛片 | 欧美黄区| 操片免费 | 国产91调教 | 高清一区二区三区视频 | 精品毛片免费看 | 成人在线一区二区三区 | 国产一区二区视频在线 | 92精品国产自产在线观看48页 | 美女一级a毛片免费观看 | www.黄色大片 | 日本一级毛片片在线播放 | 欧美综合中文字幕久久 | 夜夜女人国产香蕉久久精品 | 亚洲欧美在线观看首页 | 色狠狠成人综合网 | 国产在线精品成人一区二区三区 | 色播影院性播12306影视 | 欧美三级毛片 | 91摄影师与白嫩模特观看 | 国产高清一级毛片在线不卡 | 岛国毛片一级一级特级毛片 | 琪琪五月天综合婷婷 | 日韩精品一区二三区中文 | 免费毛片无需任何播放器 | 尤物精品在线观看 | 在线观看www妖精免费福利视频 | 久久精品香蕉 | 中国日韩欧美中文日韩欧美色 | 日韩视频在线免费观看 | 国产又色又爽的视频免费 | 久久制服诱惑 | 91老女人| 日韩中文字幕视频在线 | 国产只有精品 | 九九九在线视频 | 一级毛片国产 | 国产精品v欧美精品v日韩 |