我正在尝试使用正则表达式肯定后向创建字典列表。我尝试了两种不同的代码:
变体 1
string = '146.204.224.152 - lubo233'
for item in re.finditer( "(?P<host>[0-9]*[.][0-9]*[.][0-9]*[.][0-9]*)(?P<user_name>(?<= - )[a-z]*[0-9]*)", string ):
print(item.groupdict())
变体 2
string = '146.204.224.152 - lubo233'
for item in re.finditer( "(?P<host>[0-9]*[.][0-9]*[.][0-9]*[.][0-9]*)(?<= - )(?P<user_name>[a-z]*[0-9]*)", string ):
print(item.groupdict())
期望的输出
{'host': '146.204.224.152', 'user_name': 'lubo233'}
问题/问题
在这两种情况下,我都无法消除子字符串“-”。
使用正向后视(?<= - )
会使我的代码出错。
任何人都可以帮助确定我的错误吗?谢谢。