分类: Python
正则表达式:怎么匹配最后一次出现的某个字符
c(?=((?!c).)*$) 匹配最后… Read more
正则表达式()、[]、{}的区别
正则表达式的() [] {} 有着不同的… Read more
re.findall 和 re.sub的用法
1、re.findall() 样例: p… Read more
python美化输出list列表的方法
1、import json 2、样例 p… Read more
正则表达式贪婪与非贪婪模式
之前做程序的时候看到过正则表达式的贪婪与… Read more
正则表达式替换多个连续br为一个br
1、把源码中的一个或者多个连续的换行符替… Read more
前端神器puppeteer入门及实践
前面写过的phantomJs,研究几天后… Read more
Puppeteer
Puppeteer 是 Chrome 开… Read more
python爬虫去除html中特定标签、去除注释、替换实体
前言:本文主要讲w3lib库的四个函数 … Read more