博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
re正则表达式6_+
阅读量:6577 次
发布时间:2019-06-24

本文共 454 字,大约阅读时间需要 1 分钟。

+ means"match one or more"

the group proceding a plus must appear at least once.

 

# -*- coding: utf-8 -*-

"""
Spyder Editor

This is a temporary script file.

"""
import re
re1=re.compile(r'bat(wo)+man')
mo1=re1.search("the adventure of batman")
#print("mo1.group():",mo1.group())
#出现错误,wo至少出现一次

mo2=re1.search("the adventure of batwoman")

print("mo2.group():",mo2.group())

mo3=re1.search("the adventure of batwowowowoman")

print("mo3.group():",mo3.group())

 

转载地址:http://blyno.baihongyu.com/

你可能感兴趣的文章
js-页面进入时同时实现-图片预加载
查看>>
MongoDB的副本集Replica Set
查看>>
Maven项目中的配置文件找不到以及打包问题
查看>>
面向对象
查看>>
HDU 1058 Humble Numbers
查看>>
【EntityFramework系列教程二,翻译】借助EntityFramework在ASP.NET MVC程序中完成增删改查操作...
查看>>
NYOJ The Triangle
查看>>
wps10.1中将txt转为excel
查看>>
[zz]求随机数构成的数组中找到长度大于或等于3的最长的等差数列
查看>>
operamasks-omGrid的使用
查看>>
并发同步知多少
查看>>
解决执行脚本报syntax error: unexpected end of file或syntax error near unexpected token `fi'错误的问题...
查看>>
[BZOJ3312][USACO]不找零(状压DP)
查看>>
动态分页实现
查看>>
页面之间的传值和大量参数的传递
查看>>
python学习之路-5 基础进阶篇
查看>>
jQuery事件之一次性事件
查看>>
.NET组件程序设计之线程、并发管理(二)
查看>>
gtp转换mbr
查看>>
js-数组常用方法、
查看>>