您的位置:首页 > 编程语言 > Python开发

Python中的re模块(二)

2016-03-11 20:39 555 查看

re模块中的search函数

re.search函数会在字符串内查找模式匹配,直到找到第一个匹配然后返回,它会在所有可能的字符位置尝试匹配模式,如果字符串没有相应的匹配,则返回None。 

\b  

单词边界。这是个零宽界定符(zero-width assertions)只用以匹配单词的词首和词尾。单词被定义为一个字母数字序列,因此词尾就是用空白符或非字母数字符来标示的。

\s  匹配任何空白字符;它相当于类  [ \t\n\r\f\v]。

下面有两段关于search函数的代码示例:

下面的例子只匹配 "class" 整个单词;而当它被包含在其他单词中时不匹配。 
import re
p = re.compile(r'\bclass\b')
print p.search('no class at all')
print p.search('the declassified algorithm')
print p.search('one subclass is')



<pre name="code" class="python">import re
text = "JGood is a handsome boy, he is cool, clever, and so on..."
m = re.search(r'\shan(ds)ome\s', text)
if m:
print m.group(0), m.group(1)
else:
print 'not search'





re.search的函数原型为: re.search(pattern, string, flags) ,每个参数的含意与re.match一样。 re.match与re.search的区别:re.match只匹配字符串的开始,如果字符串开始不符合正则表达式,则匹配失败,函数返回None;而re.search匹配整个字符串,直到找到一个匹配。 

re模块中的sub函数

re.sub找到 re 匹配的所有子串,并将其用一个不同的字符串替换,下面一个例子将字符串中的空格 ' ' 替换成 '-' : 

import re
text = "JGood is a handsome boy, he is cool, clever, and so on..."
print re.sub(r'\s+', '-', text)



re.sub的函数原型为:re.sub(pattern, repl, string, count) ,其中第二个函数是替换后的字符串;本例中为'-'
,第四个参数指替换个数。默认为0,表示每个匹配项都替换。 re.sub还允许使用函数对匹配项的替换进行复杂的处理。如:re.sub(r'\s',
lambda m: '[' + m.group(0) + ']', text, 0);将字符串中的空格' '替换为'[ ]'。

re模块中的split函数

re.split将字符串在 RE 匹配的地方分片并生成一个列表,下面一个例子将会将字符串分割成单个单词:
import re
p = re.compile(r'\W+')
p.split('This is a test, short and sweet, of split().', 3)



通过设置数字3可以设置分片数量。

re模块中的findall函数

re.findall可以获取字符串中所有匹配的字符串。如:re.findall(r'\w*oo\w*', text);获取字符串中,包含'oo'的所有单词。

re模块中的compile函数

可以把正则表达式编译成一个正则表达式对象。可以把那些经常使用的正则表达式编译成正则表达式对象,这样可以提高一定的效率。下面是一个正则表达式对象的一个例子: 

import re
text = "JGood is a handsome boy, he is cool, clever, and so on..."
regex = re.compile(r'\w*oo\w*')
print regex.findall(text)
print regex.sub(lambda m: '[' + m.group(0) + ']', text)

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: