繁体   English   中英

如何搜索与特定模式匹配的 url?

[英]How to search for urls that match a specific pattern?

所以我的目标是制作一个 python 脚本,该脚本读取 email,然后选择其中的特定链接,然后在网络浏览器中打开该链接。

但目前我被困在获得所有 URL 链接的部分。 但我只想将它们过滤到特定的特定 URL 包含"/user/cm-l.php?" 但在问号之后,你会得到一个随机生成的链接。

有人知道如何解决此问题或编辑脚本以仅过滤包含该部分的 URL 吗?

我用re.search/findall/match尝试了一些东西,但我无法让它工作,所以它只会过滤那个 URL。

import imaplib 
import email
import re

# imap and user credentials.
mail = imaplib.IMAP4_SSL('imap.domain.com')
mail.login('username@domain.com', 'password')
mail.list()
# connect to right mailbox inside inbox.
mail.select("inbox")

result, data = mail.search(None, "ALL")

# data is a list.
ids = data[0]
# ids is a space separated string.
id_list = ids.split()
# changes which e-mail to read. '-1': gets the latest e-mail.
latest_email_id = id_list[6]

result, data = mail.fetch(latest_email_id, "(RFC822)")

raw_email = data[0][1]
raw_email = str(raw_email)

# this will search al the urls in an email.
def Find(string):
    regex = r"(?i)\b((?:https?://|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}/user)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'\".,<>?«»“”‘’]))"
    url = re.findall(regex,string)      
    return [x[0] for x in url] 

# prints all of the URLs.
print(Find(raw_email))

通过使用应用组(..)定义正则表达式模式,您可以找到带有可选前缀和后缀的确切字符串。 ([a-zA-Z\/]*?)(\/user\/cm-l\.php\?)(.*)? 包括三组。

以下示例显示了如何访问提取的内容。

import re
mailstring = """
/user/cm-l.php?

some link : /main/home/user/cm-l.php?

link with suffix /user/cm-l.php?345TfvbzteW4rv#!_
"""


def Find(string):
    pattern = r'([a-zA-Z\/]*?)(\/user\/cm-l\.php\?)(.*)?'

    for idx,match in enumerate(re.findall(pattern,string)):
        print(f'### Match {idx}')
        print('full= ',''.join(match))
        print('0= ',match[0])
        print('1= ',match[1]) # match[1] is the base url
        print('2= ',match[2])

Find(mailstring)

'''
### Match 0
full=  /user/cm-l.php?
0=  
1=  /user/cm-l.php?
2=  
### Match 1
full=  /main/home/user/cm-l.php?
0=  /main/home
1=  /user/cm-l.php?
2=  
### Match 2
full=  /user/cm-l.php?345TfvbzteW4rv#!_
0=  
1=  /user/cm-l.php?
2=  345TfvbzteW4rv#!_
'''

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM