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

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

替換文本文件中的錯(cuò)誤網(wǎng)址并在 Python 中修復(fù)它們

替換文本文件中的錯(cuò)誤網(wǎng)址并在 Python 中修復(fù)它們

心有法竹 2023-06-27 16:28:00
我收到的 URL 已刪除前向睫毛,我基本上需要更正文本文件內(nèi)的 url。文件中的 URL 如下所示:https:www.ebay.co.ukitmReds-Challenge-184-214-Holo-Shiny-Rare-Pokemon-Card-SM-Unbroken-Bonds-Rare124315281970?hash=item1cf1c4aa32%3Ag%3AXBAAAOSwJGRfSGI1&LH_BIN=1我需要將其更正為:https://www.ebay.co.uk/itm/Reds-Challenge-184-214-Holo-Shiny-Rare-Pokemon-Card-SM-Unbroken-Bonds-Rare/124315281970?hash=item1cf1c4aa32%3Ag%3AXBAAAOSwJGRfSGI1&LH_BIN=1所以基本上我需要一個(gè)正則表達(dá)式或其他方式來(lái)編輯文件中每個(gè) URL 的正斜杠,并替換文件中損壞的 URL。
查看完整描述

1 回答

?
江戶(hù)川亂折騰

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

while True:

    import time

    import re

    #input file

    fin = open("ebay2.csv", "rt")

    #output file to write the result to

    fout = open("out.txt", "wt")



    #for each line in the input file

    for line in fin:

        #read replace the string and write to output file

        fout.write(line.replace('https://www.ebay.co.uk/sch/', 'https://').replace('itm', '/itm/').replace('https:www.ebay','https://www.ebay'))


    with open('out.txt') as f:

      regex = r"\d{12}"

      subst = "/\\g<0>"

      for l in f:

          result = re.sub(regex, subst, l, 0, re.MULTILINE)

          if result:

              print(result)


    fin.close()

    fout.close()

    time.sleep(1)

我最終想出了這個(gè)。這有點(diǎn)笨拙,但完成工作的速度足夠快。


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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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