「python入門」match()で先頭から一致するサンプル

例1
#! /usr/bin/env python
# -*- coding=utf-8 -*-
import re
text = 'pythontab’
m = re.match(r"\w+", text)
if m:
print m.group(0)
else:
print 'not match’

結果:pythontab

例2
#! /usr/bin/env python
# -*- coding=utf-8 -*-
#
import re
text = '@pythontab’
m = re.match(r"\w+", text)
if m:
print m.group(0)
else:
print 'not match’
結果:not match

Python

Posted by arkgame