摘要:
打印效果如图所示 #include <stdio.h> #include <ctype.h> // isprint void hexDump(const unsigned char *data, int size) { int i, offset; for (offset = 0; offset < 阅读全文
摘要:
收集几个非常用正则, 一些原理说实话我是没看懂, 但是试了能用, 就这样了 取反 通常正则是对匹配到的字串进行操作, 但有的时候我们需要进行一些相反的操作, 比如, 删除所有不带 hello 的行可以这样搞 ^((?!hello).)*$ 至于怎么做到根据表达式 完全 取反, 这个没找到什么靠谱的方 阅读全文