网络编程
位置:首页>> 网络编程>> Python编程>> python正则表达式函数match()和search()的区别

python正则表达式函数match()和search()的区别

作者:wdc  发布时间:2021-10-05 10:25:52 

标签:python,正则

match()函数只检测RE是不是在string的开始位置匹配, search()会扫描整个string查找匹配, 也就是说match()只有在0位置匹配成功的话才有返回,如果不是开始位置匹配成功的话,match()就返回none

例如:


#! /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

而:


#! /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

search()会扫描整个字符串并返回第一个成功的匹配

例如:


#! /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

那这样呢:


#! /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

来源:https://www.pythontab.com/html/2013/pythonjichu_0201/199.html

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com