gpt4 book ai didi

python re.findall 与 re.sub

转载 作者:太空宇宙 更新时间:2023-11-04 00:52:55 25 4
gpt4 key购买 nike

请解释一下为什么使用 re.find 和 re.sub 会得到不同的结果

我解析的字符串:

GRANT USAGE ON *.* TO 'testuser'@'10.10.10.10' IDENTIFIED BY PASSWORD '*A78AF560CD6F8FEA4DC8205299927B6CB1B1F56A'

代码:

import re

S="GRANT USAGE ON *.* TO 'testuser'@'10.10.10.10' IDENTIFIED BY PASSWORD '*A78AF560CD6F8FEA4DC8205299927B6CB1B1F56A'"

U=re.compile(r'.* TO \'(.*?)\'@.*')
H=re.compile(r'.*\'@\'(.*?)\'.*')

print(U.findall(S))
print(H.findall(S))

所以我得到了我想要的:

['testuser']  
['10.10.10.10']

所以,我想更改ip地址和用户,所以我尝试使用re.sub

代码

import re
S="GRANT USAGE ON *.* TO 'testuser'@'10.10.10.10' IDENTIFIED BY PASSWORD '*A78AF560CD6F8FEA4DC8205299927B6CB1B1F56A'"

U=re.compile(r'.* TO \'(.*?)\'@.*')
H=re.compile(r'.*\'@\'(.*?)\'.*')

HOST=H.sub('another_ip',S)
USER=U.sub('another_user',S)
print(HOST)
print(USER)

但我只是明白了:

another_ip
another_user

最佳答案

使用 re.sub() 时,您需要专门针对要替换的字符串部分。换句话说,re.sub() 将替换所有与正则表达式匹配的内容(好吧,strictly speaking模式最左边的非重叠出现) - 在您的情况下,您要替换完整的字符串。相反,您可以专门匹配用户和 IP 地址,例如:

>>> re.sub(r"'(\w+)'@'(\d+\.\d+\.\d+\.\d+)'", "'another_user'@'another_ip'", S)
"GRANT USAGE ON *.* TO 'another_user'@'another_ip' IDENTIFIED BY PASSWORD '*A78AF560CD6F8FEA4DC8205299927B6CB1B1F56A'"

关于python re.findall 与 re.sub,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36430170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com