「python入門」search関数で文字列を検索するサンプル

2017年12月23日

例1
#! /usr/bin/env python
# -*- coding=utf-8 -*-
#
import re
text = 'pythontab’
m = re.search(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.search(r"\w+", text)
if m:
print m.group(0)
else:
print 'not match’
結果:pythontab

Python

Posted by arkgame