首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

关于python的正则表达式有关问题

2012-09-14 
关于python的正则表达式问题我想通过正则表达式匹配的同时可以获取到相应的值,该怎么搞呢比如:sasa02cid

关于python的正则表达式问题
我想通过正则表达式匹配的同时可以获取到相应的值,该怎么搞呢
比如:
 s='asa02cid=333fsdf'
 pattern=re.compile('.*cid=.*')
 我想获得333

[解决办法]

Python code
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32Type "copyright", "credits" or "license()" for more information.>>> import re>>> s='asa02cid=333fsdf'>>> m = re.search('=(\d+)', s)>>> if m:    print m.groups()    ('333',)>>> 

热点排行