易截截图软件、单文件、免安装、纯绿色、仅160KB

求助python的字符串处理

需求:
文件a.txt内容如下
>> cat a.txt
/* ME Type=DEC, Version=V100R003C01*/
/* ME Type=NOV, Version=V100R003C00*/
/* ME Type=CCVS, Version=V100R003C03*/
/* ME Type=OCTOB, Version=V100R003C08*/

请问如何使用python脚本获取文件中的ME type,使之对数组a赋值:
a1=DEC
a2=NOV
a3=CCVS
a4=OCTOB
re.match

大侠,请帮忙写一个简单例子,刚开始学python,谢谢!


高级点这样:
Python code:
import re

reg = re.compile(r'Type=(\w*),')

def GetType(str):
match = reg.search(str)
if match is not None:
return match.groups(0)[0]

f = open('a.txt')
a = map(GetType, f)
print a
f.close()


当然如果你的数据相当规范,一定是以Type=为前导,也可以不用正则:
Python code:
import re

prefix = 'Type='
def GetType(str):
for i in str.split():
if i.startswith(prefix):
return i[len(prefix):-1]

f = open('a.txt')
a = map(GetType, f)
print a
f.close()
这只是举个例子,你对数据越了解,处理手段就越多。

re.findall('''Type=(.*?),''', str)

import re

f = open('t.txt')                 


相关问答:

Python中的Unicode在Delphi如何还原成Gb2312?

已知Python 中:
s = unicode("测试", "gb2312")
s = u'\u6d4b\u8bd5'
print s
测试

在Delphi里面如何将\u6d4b\u8bd5这样的还原成Gb2312的汉字呢?
找到个方法
......

python怎么print 'hello world'

大家好,我是一个新手,刚开始学python,但是刚开始的helloworld都没法打印,让我很无奈。
我的python安装路径为f:\python31。在path中也设置对了,在windows下运行是这样显示的,希望各位前辈指点一下。谢谢
Pyth ......

求救求救求救一段python代码的注释,急!

由于是第一次接触python,语法也不懂
但是临时要用到...

请帮忙注释一段代码...不需要每一句都注释,因为是学java的,所以基本思路还是有一点


#************************************************ ......

python实现自动登录的问题

想通过python post来实现自动登录新浪围脖已获得登录后页面的源码
但是仔细的看了下登录页面的源码
HTML code:
<body style=" background:#C4EFF4 url(http://simg.sinajs.cn/miniblog/images/commo ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号