【卷一】正则四 |> 练习

时间:2022-09-06 21:45:49

参考:《Python核心编程(3rd)》—P39

1-1  识别后续的字符串: "bat", "bit", "but" "hat", "hit" 或者 "hut"

 # coding: utf-8

 # 导入re模块, re: Regex(Regular Expression) 正则表达式
import re url = "https://www.baidu.com/baidu?tn=monline_3_dg&ie=utf-8&wd=bat%E7%"
# 直接用管道符号 "|" 逐一匹配
print re.findall(r"bat|bit|but|com|hat|hit|hut", url)

1-2 匹配由单个空格分隔的任意单词对,也就是姓和名

 # coding: utf-8

 import re

 txt = "My name is D_R Adams, her name is J.K Rowling, his name is Tomas Smith!"
# 管道符号左边是匹配D_R ~和J.K ~ 这种类型的,右边是匹配Tomas Smith这种常见的名字
print re.findall(r"[A-Z].[A-Z] \w+|[A-Z]\w+ [A-Z]\w+", txt)

1-6 匹配以"www"起始且以".com"结尾的简单Web域名,选做题:

你的正则表达式也可以支持其他高级域名, 如.edu, .net 等

 # coding: utf-8

 import re

 url = "http://www.baidu.com/, http://www.google.cn/, http://www.foothill.edu"

 # 有多重括号时,如果只需最外面总的分组(一般用括号把我们要的分组给圈起来),那么里面的括号就要加 ?: 表示不保存该分组
print re.findall("(www(?:.+com|.+cn|.+edu))", url)
#print re.findall("www.+com|www.+cn|www.+edu", url)

1-11 匹配所有能够表示有效电子邮件地址的集合

 # coding: utf-8

 import re

 email = "QQ mailbox such as 1111@qq.com, 1234@163.com is WangYi mailbox, and google mailbox: 2222@gmail.com"

 for each_line in email.split(","):
a = re.findall(r"\d+@.+com", each_line)
# 用 join() 把列表转换成字符串
print "".join(a)

如果只是想把文本和邮箱分开:

 # coding: utf-8
import re
email = "QQ mailbox such as 1111@qq.com, 1234@163.com is WangYi mailbox, and google mailbox: 2222@gmail.com" for each_line in email.split(","):
# 用(?= )表示按后面是 "数字+@"的情况来划分, 注意括号后边要加空格
re.split(r"(?= \d+@) ", each_line.strip())

点我

 
1-13 type(). 内置函数type()返回一个类型对象,创建一个从<type 'int'>提取 int, 从<type 'str'>提取str的正则表达式
 # coding: utf-8

 import re

 string = type("Hello, world!")     # str: (string)字符串
integer = type(123) # int: (integer)整数
f = type(3.14) # float: 浮点数 def PiPei(a):
# 注意,因为string, integer, f本身是type类的字符, 而不是str类的, 所以此外要转换
print re.findall(r"type '(\w+)'", str(a)) PiPei(string)
PiPei(integer)
PiPei(f)

展开

------------------------------------------------------------------------------------------------------------------------------

19-27答案参见:

正则三 之数据生成器 —> http://www.cnblogs.com/Ruby517/p/5802984.html

------------------------------------------------------------------------------------------------------------------------------

1-28 区号(三个整数集合中的第一部分和后面的连字符)是可选的,也就是说,正则表达式应当匹配 800-555-1212,也能匹配

555-1212!

 # coding: utf-8

 import re

 num1 = "555-1212"
num2 = "800-555-1212" # +表示匹配前面的字符 1 到多次,(?: )表示不保存该分组,由于我们要的是
# 一整个正则表达式匹配的内容,所以加括号的分组是不需要保存的!
print re.findall(r"(?:\d{3}-)+\d{4}", num1)
print re.findall(r"(?:\d{3}-)+\d{4}", num2)

代码

1-29 支持使用圆括号或者连字符连接的区号(更不用说是可选的内容);使正则表达式匹配 800-555-1212以及 (800) 555-1212

 # coding: utf-8

 import re

 n1 = "555-1212"
n2 = "800-555-1212"
n3 = "(800) 555-1212" # 我们要的是整个正则表达式匹配的内容,因此前2个括号括起来
# 的都是不需要的分组,所以用(?: )表示不保存该分组
# '?'表示匹配前面的字符0或1次,'+' 表示匹配前面的字符1或多次
print re.findall(r"(?:\(\d{3}\) )?(?:\d{3}-)+\d{4}", n1)
print re.findall(r"(?:\(\d+\) )?(?:\d+-)+\d+", n2)
print re.findall(r"(?:\(\d+\) )?(?:\d+-)+\d+", n3)

Click

【卷一】正则四 |> 练习的更多相关文章

  1. JS正则四个反斜杠的含义

    我们首先来看如下代码,在浏览器中输出的是什么? // 在浏览器中输出的 console.log('\\'); // 输出 \ console.log('\\\\'); // 输出 \\ 一:js正则直 ...

  2. backbonejs中的模型篇&lpar;二)

    一:模型标识符 每个模型都有一个用作唯一标识符的ID属性,以便在不同模型间进行区分.通过id属性我们可以直接访问模型对象当中用于标识符存放的属性,默认属性名为id,但也可以通过设置idAttribut ...

  3. Flask框架(二)—— 反向解析、配置信息、路由系统、模板、请求响应、闪现、session

    Flask框架(二)—— 反向解析.配置信息.路由系统.模板.请求响应.闪现.session 目录 反向解析.配置信息.路由系统.模板.请求响应.闪现.session 一.反向解析 1.什么是反向解析 ...

  4. &lbrack;Day4&rsqb; Nginx Http模块二

    一. POST_READ阶段     1. 用户ip在http请求中的传递? 前提:Tcp连接四元组(src ip,src port,dst ip,dst port) HTTP头部 X-Formard ...

  5. ES6&lpar;四&rpar; --- 正则 Number Math

    想学vue了  重启ES6的学习之路 在ES5 中正则的构造器  RegExp  不支持第二个参数 ES6 做了调整   第二个参数表示正则表达式的修饰符(flag) var regex = new ...

  6. 大白话5分钟带你走进人工智能-第十四节过拟合解决手段L1和L2正则

                                                                               第十四节过拟合解决手段L1和L2正则 第十三节中, ...

  7. &lbrack;深入理解Android卷一全文-第四章&rsqb;深入理解zygote

    由于<深入理解Android 卷一>和<深入理解Android卷二>不再出版,而知识的传播不应该由于纸质媒介的问题而中断,所以我将在CSDN博客中全文转发这两本书的所有内容. ...

  8. 第二百六十四节,Tornado框架-基于正则的动态路由映射分页数据获取计算

    Tornado框架-基于正则的动态路由映射分页数据获取计算 分页基本显示数据 第一步.设置正则路由映射配置,(r"/index/(?P<page>\d*)", inde ...

  9. js进阶js中支持正则的四个常用字符串函数(search march replace split)

    js进阶js中支持正则的四个常用字符串函数(search march replace split) 一.总结 代码中详细四个函数的用法 search march replace split 二.js进 ...

随机推荐

  1. 修正IE6不支持position&colon;fixed的bug(转)

    众所周知IE6不支持position:fixed,这个bug与IE6的双倍margin和不支持PNG透明等bug一样臭名昭著.前些天我做自己的博客模板的时候,遇到了这个问题.当时就简单的无视了IE6— ...

  2. JS动态添加option和删除option

    1.动态创建select function createSelect(){ var mySelect = document.createElement("select");     ...

  3. ural 1341&period; Device

    1341. Device Time limit: 1.0 secondMemory limit: 64 MB Major (M): You claimed that your device would ...

  4. 161201、常用 SQL Server 规范集锦

    常见的字段类型选择   1.字符类型建议采用varchar/nvarchar数据类型 2.金额货币建议采用money数据类型 3.科学计数建议采用numeric数据类型 4.自增长标识建议采用bigi ...

  5. javaWeb request乱码处理

    //解决get方式提交的乱码        String name = request.getParameter("name");        name=new String(u ...

  6. css图片切换效果分析&plus;翻译整理

    Demos:http://tympanus.net/Tutorials/CSS3SlidingImagePanels/ 出处:http://tympanus.net/codrops/2012/01/1 ...

  7. &lbrack;每日一题&rsqb; 11gOCP 1z0-052 &colon;2013-09-4 block header grows&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;&period;A33

    转载请注明出处:http://write.blog.csdn.net/postedit/11100311 正确答案是:AD 要理解这道题就要去了解数据块的结构.引用OCPPPT中的一幅图: 从这幅图中 ...

  8. SpringBoot捕获全局异常

    1.创建GloableExceptionAop类捕获全局异常 package com.cppdy.exception; import org.springframework.web.bind.anno ...

  9. caffe跑densenet的错误:Message type &quot&semi;caffe&period;PoolingParameter&quot&semi; has no field named &quot&semi;ceil&lowbar;mode&quot&semi;&period;【转自CSDN】

    最近看了densenet这篇论文,论文作者给了基于caffe的源码,自己在电脑上跑了下,但是出现了Message type “caffe.PoolingParameter” has no field ...

  10. Sass 和 SCSS 有什么区别?

    Sass 官网上是这样描述 Sass 的: Sass 是一门高于 CSS 的元语言,它能用来清晰地.结构化地描述文件样式,有着比普通 CSS 更加强大的功能. Sass 能够提供更简洁.更优雅的语法, ...