0
line=a name="12123" adfii 41:05:992 wp=wp2 这是速率​​:受控不是最大;time=300 系统循环: process=16.0 sharesize=6b2k 。

在等号之前和之后重新搜索行的最佳方法是什么。例如,我想留下 name=12123 time=300 process=16.0 sharesize=6b2k。然后放入字典

4

1 回答 1

0

尝试以下操作:

#!python3

import re

line = 'line=a name="12123" adfii  41:05:992 wp=wp2 this is the rate: controlled not max; time=300 loops for the system: process=16.0 sharesize=6b2k'

pattern = r'(\w+)=(\w+|".+?")'

lst = re.findall(pattern, line)
print(lst)

d = dict(lst)
print(d)
print(d['process'])

它在我的屏幕上打印以下内容:

c:\tmp\___python\njau_ndirangu\so13758903>py a.py
[('line', 'a'), ('name', '"12123"'), ('wp', 'wp2'), ('time', '300'), ('process', '16'), ('sharesize', '6b2k')]
{'line': 'a', 'sharesize': '6b2k', 'time': '300', 'name': '"12123"', 'process': '16', 'wp': 'wp2'}
16

当然也可以直接写:

d = dict(re.findall(r'(\w+)=(\w+|".+?")', line))

返回匹配列表,.findall其中一个匹配表示为以子组为元素的元组(模式内括号中的内容)。

但要小心正则表达式。你很容易出错。

于 2012-12-07T12:39:35.730 回答