import re
data = open('a.txt')
fh = open('b.txt', 'w')
"""Search the string begining with '【'"""
p = re.compile(r'\s*[\u3010]')
for each_d in data:
if re.match('\s*3\d{4}', each_d):
...
分类:
编程语言 时间:
2014-05-22 17:26:17
阅读次数:
293
python中使用正则表达式
1. 匹配字符
正则表达式中的元字符有 . ^ $ * + ? { } [ ] \ | ( )
匹配字符用的模式有
\d 匹配任意数字
\D 匹配任意非数字
\s 匹配任意空白字符
\S 匹配任意非空格字符
\w 匹配任意数字或者字母
\W 匹配任意非数字或者字母
2. 正则表达式
python中使用compile处...
分类:
编程语言 时间:
2014-05-22 11:33:49
阅读次数:
294
作者郭蕾发布于
2014年5月16日在5月12日的TechED大会上,微软首次向外界介绍了下一代ASP.NET框架——ASP.NET vNext。ASP.NET
vNext专门针对云环境和服务器环境进行了优化,并带来了“无编译”( no-compile )开发体验以及依赖注入(Dependency ...
分类:
Web程序 时间:
2014-05-22 02:51:33
阅读次数:
320
原文:http://wiki.openwrt.org/doc/howto/obtain.firmware.sdk为什么要使用SDK:
Reasons for using the SDK are: Compile custom software for a specific release
wh...
分类:
其他好文 时间:
2014-05-22 01:10:32
阅读次数:
452
1;产生一个新项目在环境变量里面配置路径D:\UserProfiles\FelixLiu\Downloads\cocos2d-x-3.0\cocos2d-x-3.0\tools\cocos2d-console\bin
这个主要是为了使用 cocos.py 工具,后面要 new compile 什么的...
分类:
其他好文 时间:
2014-05-21 21:15:01
阅读次数:
179
KERNELDIR
=/home/wenhao/platform/linux-2.6.34PWD := $(shell pwd)CROSS_COMPILE =
/usr/local/arm/4.3.2/bin/arm-linux-CC = $(CROSS_COMPILE)gccobj-m := ke...
分类:
系统相关 时间:
2014-05-21 19:30:10
阅读次数:
292
正则表达式两类:Pattern模式类和Matcher匹配类
Pattern主要是用来编译模型和生成匹配器matcher;正则表达式基本方法 //定义一个pattern,该pattern就是个f空两个k的模式Pattern
p=Pattern.compile("f(.+?)(.+?)(.+...
分类:
编程语言 时间:
2014-05-19 18:29:37
阅读次数:
270
python:“蟒蛇”import py_compile
:编译模块,生成pyc文件,或者pyo文件;python -o -m py_compile hello.pypython 补充: 运算符:in/not
in,成员测试, is/not is,同一性测试,三重引号(docstring)的作...
分类:
编程语言 时间:
2014-05-19 17:02:49
阅读次数:
322
首先将插件导入到工程中,然后点击工程名,在targets下面找到相应的条目,然后选择build
phares,打开第二行compile sourses,然后找到不支持arc的.m文件,在后边添加上“-fno-objc-arc”即可。
分类:
移动开发 时间:
2014-05-17 14:58:11
阅读次数:
314
handlerbar.jsHandlebars templates 像普通的html,
嵌入式的 handlebars 表达式. {{title}} {{body}}
你可以用标签的方式提供向浏览器提供一个模版。利用handlebars.compile编译JavaScript模板。它采...
分类:
Web程序 时间:
2014-05-17 00:11:41
阅读次数:
418