Maison  >  Questions et réponses  >  le corps du texte

python 字符串匹配问题

想匹配html = <p class="back fl"><a href="javascript:void(0);" onclick="_gaq.push(['_trackEvent','function', 'onclick', 'blog_articles_shangyipian']);location.href='/u012582664/article/details/56845037';"><span><i class="fa fa-arrow-left"></i></span><em>安装最新版python</em></a></p><p class="forward fr"><a href="javascript:void(0);" onclick="_gaq.push(['_trackEvent','function', 'onclick', 'blog_articles_xiayipian']);location.href='/u012582664/article/details/59120585';"><em>各种数据库的注释</em><span><i class="fa fa-arrow-right"></i></span></a></p>中的‘56845037’和‘59120585’,尝试用正则:

pattern_l = r'''<a href="javascript:void(0);" onclick="_gaq.push(['_trackEvent','function', 'onclick', 'blog_articles_shangyipian']);location.href='(.+?)';">'''
re.findall(pattern_l,html)

结果不成功。返回为空,有用:

 soup = BeautifulSoup(html, "lxml")
        print(soup.find_all(onclick="_gaq.push(['_trackEvent','function', 'onclick', 'blog_articles_shangyipian']);location.href='/u012582664/article/details/(.+?)';"))
        

还是返回空,请教各位怎么写才行,是哪里出了问题

ringa_leeringa_lee2719 Il y a quelques jours454

répondre à tous(2)je répondrai

  • PHP中文网

    PHP中文网2017-04-18 10:34:04

    Ce tas de choses devant vous n’ont en fait pas besoin d’être assorties.

    Il suffit de faire correspondre ceux-ci :

    re.findall(r"location.href='/u012582664/article/details/(\d+)",html)

    répondre
    0
  • 迷茫

    迷茫2017-04-18 10:34:04

    Essayez d'échapper aux parenthèses ? Les parenthèses et les crochets ont une signification particulière dans les expressions régulières

    répondre
    0
  • Annulerrépondre