第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使 python re.sub 多次查看

使 python re.sub 多次查看

FFIVE 2023-06-06 17:18:52
假設(shè)我有以下代碼:s = 'cucumber apple tomato'def f(match):    if match.group(2) not in ('apple', ):        return '%s (%s)' % (match.group(1), match.group(2))    else:        return match.group()如何進(jìn)行re.sub(r'([a-z])+\s+[a-z]+', f, s)輸出cucumber apple (tomato)?問(wèn)題是正則表達(dá)式引擎只測(cè)試cucumber apple,而不是apple tomato。
查看完整描述

2 回答

?
慕的地8271018

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊

使用捕獲前瞻:


>>> s = 'cucumber apple tomato'

>>> re.findall(r'(\w+)(?=[ \t]+(\w+))', s)

[('cucumber', 'apple'), ('apple', 'tomato')]

這使您可以在不消耗字符串的情況下捕獲第一個(gè)單詞前面的第二個(gè)單詞。


你可以變成(我>>認(rèn)為<<)是你想要的結(jié)果:


>>> [f'{t[0]} ({t[1]})' if t[1]=='apple' else t for t in re.findall(r'(\w+)(?=[ \t]+(\w+))', s)]

['cucumber (apple)', ('apple', 'tomato')]

在您的評(píng)論中,您有一個(gè)不同的示例和不同的答案模式。對(duì)于該結(jié)果,只需使用可選匹配項(xiàng):


>>> s='cucumber apple tomato tomato apple cucumber tomato tomato'

>>> [f'{t[0]} {t[1]} ({t[2]})' if t[2] else f'{t[0]} ({t[1]})' for t in re.findall(r'(\w+)(?:[ \t]+(\w+))?(?:[ \t]+(\w+))?', s)]

['cucumber apple (tomato)', 'tomato apple (cucumber)', 'tomato (tomato)']


查看完整回答
反對(duì) 回復(fù) 2023-06-06
?
慕神8447489

TA貢獻(xiàn)1780條經(jīng)驗(yàn) 獲得超1個(gè)贊

這是基于您在評(píng)論中提供的信息,因此可能不完全是您要查找的信息,但是:

可以有任意數(shù)量的單詞:'cucumber apple tomato tomato apple cucumber tomato tomato' 輸出應(yīng)該是 'cucumber apple (tomato) tomato apple (cucumber) tomato (tomato)'

此正則表達(dá)式將捕獲“apple”之后和行尾之前的所有非空格字符,同時(shí)忽略以“apple”結(jié)尾的單詞并允許它成為行中的第一個(gè)。

(?:^| )apple ([^ ]*)|([^ ]+)$

對(duì)于示例字符串
“apple cucumber pineapple tomato tomato apple cucumber tomato tomato”,
它將選擇
“apple cucumber pineapple tomato tomato apple cucumber tomato tomato ”


查看完整回答
反對(duì) 回復(fù) 2023-06-06
  • 2 回答
  • 0 關(guān)注
  • 165 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)