Re: [问题] 字串处理 - 简化程式码

楼主: pycontw (PyCon APAC 2014)   2014-02-27 01:08:17
※ 引述《auoauo (1493)》之铭言:
: # 刚好最近在用
: # 针对您的items = '127.0.0.1:443;SSL'这个例子的简单范例:
: import re
: match = re.search(u'''
: (?P<ip>[\d]+\.[\d]+\.[\d]+\.[\d]+)?
: :
: (?P<port>[\d]+)?
: ;
: (?P<comment>[\S]+)?
: ''', items, re.X)
: if match:
: ip, port, comment = match.group('ip'), match.group('port'), match.group('comment')
分享一个写法
如果 match 到的东西确定要直接丢出来当变量, 可以这样写::
if match:
globals().update(match.groupdict())
毕竟 regexp pattern 都定的那么完整了, 不滥用一下可惜
作者: peanut97 (丁丁)   2014-02-27 10:52:00
是Taiwan PyCon耶
作者: auoauo (1493)   2014-02-27 11:01:00
It's nice!!
作者: ccwang002 (亮)   2014-02-27 16:06:00
野生的 PyCon 大大出现了 xddd

Links booklink

Contact Us: admin [ a t ] ucptt.com