python2.X小功能函数锦集
#匹配s中的pattern,从头开始匹配 (pattern可用正则) _regexp_compile_cache = {} def Match(pattern, s): if pattern not in _regexp_compile_cache: _regexp_compile_cache[pattern] = sre_compile.compile(pattern) return _regexp_compile_cache[pattern].match(s) #查找s中的pattern(pattern可用正则) def Search(pattern, s): if pattern not in _regexp_compile_cache: _regexp_compile_cache[pattern] = sre_compile.compile(pattern) return _regexp_compile_cache[pattern].search(s) #将s中的pattern替换成rep (pattern,rep可用正则) def ReplaceAll(pattern, rep, s): if pattern not in _regexp_compile_cache: _regexp_compile_cache[pattern] = sre_compile.compile(pattern) return _regexp_compile_cache[pattern].sub(rep, s)
用户评论
推荐下载
-
测量常用小功能锦集软件
本人长期从事测量工作,现把内业中常用到的一些功能汇编到一个小软件里本软件的主要功能为:1、坐标正反算2、由坐标、角度、距离生成导线观测记录3、投影计算,由(B,L)-(X,Y)4、CAD方面可高程加常
17 2019-08-02 -
python2.x
用于零基础的学者学习python,一种脚本语言,在软件测试方面有用处
12 2020-08-21 -
python2.x benchmark
NULL博文链接:https://sttx.iteye.com/blog/370715
38 2019-08-02 -
HTMLTestRunner for python2.x
python2.x可以直接使用的HTMLTestRunner.py,作为自动化框架中生成测试报告的模块,HTMLTestRunner一直很好用
44 2019-01-02 -
python2.x和python3.x的区别
python2和3两个大版本的区别
34 2019-07-13 -
Python2.x OpenCV模块包64位
Python2.xOpenCV模块包,64位,具体配置见lz博客
49 2019-08-02 -
python2.x教程及手册html版
./tutorial 目录是教程,适合学习,打开改目录下的index.html即可浏览 ./library 是标准库,同样打开里面的index.html开始浏览 ./index.html 是主页,里面
17 2021-02-19 -
Python2.x老王Python系列基础篇习题答案
Python2.x--老王Python系列--基础篇,习题答案,记录,自己日后回顾学习。
21 2019-07-11 -
dll2lib.rar需要安装python2.X
来源:http://lavixu.livejournal.com/14738.html压缩包中除上述网址的dll2lib.py外还含有VC6的如下几个文件:DUMPBIN.EXELIB.EXELINK
27 2019-10-08 -
Python2.x和3.x下maketrans与translate函数使用上的不同
Python2.x和3.x下maketrans与translate函数使用上的不同
3 2022-02-27
暂无评论