- 论坛徽章:
- 33
|
re.search().group()   - $ python
- Python 2.6.6 (r266:84292, Nov 21 2013, 12:39:37)
- [GCC 4.4.7 20120313 (Red Hat 4.4.7-3)] on linux2
- Type "help", "copyright", "credits" or "license" for more information.
- >>> import re
- >>> xx = re.compile(u"(^.*snow_|^.*search\.asp\?do=|^.*\/q\/)")
- >>> ax = 'http://www.a.com/snow_dsfksadfjlasfa.html'
- >>> xx.search(ax).group(1)
- 'http://www.a.com/snow_'
- >>> bx = 'http://www.b.com/search.asp?do=xdfdsfasfasdf'
- >>> xx.search(bx).group(1)
- 'http://www.b.com/search.asp?do='
- >>> cx = 'http://www.c.com/q/xxxxxxxxx.html'
- >>> xx.search(cx).group(1)
- 'http://www.c.com/q/'
- >>>
复制代码 |
|