会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
王府的秘密
要么不做,要么做好
博客园
首页
联系
订阅
管理
2019年6月13日
python之re模块
摘要: [TOC] re模块 正则的特点 贪婪模式与非贪婪模式 反斜杠的困扰 常用的基础正则 1. \d 匹配数字 [0 9] 2. \D 匹配==非==数字 [\^0 9]或者[\^\d] 3. \s 匹配空白字符 4. \S 匹配==非==空白字符 5. \w 匹配字母,数字,下划线,中文 6. \W
阅读全文
posted @ 2019-06-13 18:44 Hello_Jack
阅读(303)
评论(0)
推荐(0)
编辑
公告
# 页脚html代码 /*头部导航栏*/ #navigator { font-size:15px; border-bottom: 1px solid #ededed; border-top: 1px solid #ededed; height: 60px;/*导航栏高度,原始50*/ clear: both; margin-top: 25px; } /*导航栏设置,可以自定义导航栏的目录*/ #navList { min-height: 35px; float: left; } #navList li { /*每一个栏目节点*/ float: left; margin: 0 5px 0 0; /*这里原来是0 40px 0 0 */ } #navList a { /*栏目文字的格式*/ display: block; width: 5em; height: 22px; float: left; text-align: center; padding-top: 19px; }