- 论坛徽章:
- 3
|
本帖最后由 李满满 于 2015-08-06 18:15 编辑
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- import re
- flag = ('InPort', 'OutIP', 'OutPort')
- fd = open('yhsafe.txt', 'rub')
- fl = fd.readlines()
- sectiondict = {}
- for line in fl:
- match = re.search(r'^\[(.*)\]\s*', line)
- if match:
- match_gp = match.group(1)
- sectiondict.setdefault(match_gp, [])
- else:
- sectiondict[match_gp].append(line)
- for key, val in sectiondict.iteritems():
- print ','.join([s.strip() for s in val if s.split('=')[0] in flag ])
复制代码
Press ENTER or type command to continue
InPort=22555,OutIP=132.232.5.55,OutPort=22022
InPort=8289,OutIP=132.228.166.14,OutPort=8289
InPort=4138,OutIP=132.228.166.14,OutPort=4138
InPort=4139,OutIP=132.228.166.14,OutPort=4139
|
|