码迷,mamicode.com
首页 > 其他好文 > 详细

使用正则表达式,取得点击次数,函数抽离

时间:2018-04-09 13:21:07      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:步骤   text   版权   detail   def   col   normal   ext   一个   

学会使用正则表达式

 

1. 用正则表达式判定邮箱是否输入正确。

r = (/w)+([\.\_\-]\w+)*@(\w)+((\.\w{2,3}){1,3})$
e = 623608874@qq.com
if re.match(r,e):
    print(suc)
else:
    print(please input ..)

 

2. 用正则表达式识别出全部电话号码。

import re
str = ‘‘‘版权所有:广州商学院 地址:广州市黄埔区九龙大道206号
学校办公室:020-82876130 招生电话:020-82872773
粤公网安备 44011602000060号    粤ICP备15103669号‘‘‘
a = re.findall((\d{3,4})-(\d{6,8}),str)
print(a)

 

3. 用正则表达式进行英文分词。re.split(‘‘,news)

 

4. 使用正则表达式取得新闻编号

5. 生成点击次数的Request URL

6. 获取点击次数

7. 将456步骤定义成一个函数 def getClickCount(newsUrl):

 

8. 将获取新闻详情的代码定义成一个函数 def getNewDetail(newsUrl):

使用正则表达式,取得点击次数,函数抽离

标签:步骤   text   版权   detail   def   col   normal   ext   一个   

原文地址:https://www.cnblogs.com/2015110114z/p/8758729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!