摘要: pattern = re.compile(r'pat') 1.match方法 调用形式 pattern.match(string, pos=0, endpos=len(string))或 re.match(pattern, string, flags=0): match是从首字母(若指定了pos,则 阅读全文
posted @ 2016-07-17 16:42 KBHWR 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 1.group用于匹配时截获字符串,分组使用()分隔。 2.从表达式左边开始,每遇到到左括号,分组编号加1, 即group(1) 列出第一个括号匹配部分,group(2) 列出第二个括号匹配部分;可以使用编号0引用匹配的到所有字符串 例子: import repattern = r'(\w+) is 阅读全文
posted @ 2016-07-17 11:23 KBHWR 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Win7笔记本电脑启用虚拟WIFI共享上网原文出处http://www.cnblogs.com/jianyus/archive/2012/01/18/2325953.html 今天看了一个帖子,win7系统通过笔记本的无线网卡,启用虚拟Wifi功能共享上网,自己尝试了一下,感觉很好用,至少没有无线... 阅读全文
posted @ 2013-06-20 23:13 KBHWR 阅读(202) 评论(0) 推荐(0) 编辑
摘要: First, create a DLL which handles hooking the functions. This example below hooks the socket send and receive functions#include <windows.h>#include <detours.h>#pragma comment( lib, "Ws2_32.lib" )#pragma comment( lib, "detours.lib" )#pragma comment( lib, "detoured 阅读全文
posted @ 2013-03-23 21:56 KBHWR 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1、IBM 不同部门的情况不一样,因为我是技术出身,可能更多的是了解CDL和CRL的情况。IBM现在基本上类似于外企中的国企,它解决户口的概率要比大多数外企高很多,因为它和政府关系好,这一点和Google差别明显,当然,我不好在这里评价google。 照往年的情况来看,绝大多数都解决了,08届似乎招了三四百人,09届因为经济危机,只要了100多,10届具体数字不清楚,不过很多人在那儿实习都没留下,似乎也就200人左右。 CDL,硕士进去是Band6,待遇一般是8000+800左右,这个似乎比去年高一点。[color=#00FFFF]干满三年还有个10w的钱,不过似乎是分批发的[/color]( 阅读全文
posted @ 2013-03-16 10:35 KBHWR 阅读(1323) 评论(0) 推荐(0) 编辑
摘要: getchar 字符 阅读全文
posted @ 2012-06-22 10:22 KBHWR 阅读(1583) 评论(0) 推荐(0) 编辑