摘要: 首先去apache官网下载安装包:http://httpd.apache.org/download.cgi.我下载的是Apache 2.2.31 x64 版本 下载解压缩到指定磁盘下,我的是F:\Apache22 然后打开cmd cd到F:\Apache22\bin下 输入 httpd -k ins 阅读全文
posted @ 2016-01-07 17:48 Program_青菜 阅读(583) 评论(0) 推荐(0)
摘要: python的re模块提供了有关正则表达式的方法。 常用方法与属性: compile(pattern,flags=0) 返回一个正则表达式对象,也就是说生成一个正则表达式模板,在多次使用同一个表达式的时候这个方法可以提高效率; search(pattern,string,flags=0) 返回一个m 阅读全文
posted @ 2016-01-07 13:43 Program_青菜 阅读(278) 评论(0) 推荐(0)