PalindromesA regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a pali....
分类:
其他好文 时间:
2014-09-04 00:01:57
阅读次数:
310
1. 匹配[] {}字符串 http://blog.sina.com.cn/s/blog_936a1f0a0101bdv7.html
分类:
编程语言 时间:
2014-09-02 10:26:24
阅读次数:
168
lienhua342014-09-011 文件类型我们平时最常接触的文件类型有普通文件(regular file)和目录(di-rectory file),但是 UNIX 系统提供了多种文件类型:(1) 普通文件(regular file)这种文件包含了某种形式的数据,这些数据无论是文件还是二进制对...
分类:
其他好文 时间:
2014-09-01 23:59:13
阅读次数:
513
grep可以说是Linux系统当中的一个文本检索工具。在Linux系统当中,其中有两个核心的理念:一切皆文件、配置文件保存为纯文本的格式。既然是纯文本的格式,可以想象,有一个好的文本检索工具是多么必要的。grep就是其中之一,他可以去匹配某种模式(PATTERN)来找出相应的行(line)..
分类:
其他好文 时间:
2014-08-31 02:53:31
阅读次数:
292
基本正则表达式和文本处理工具之grep、egrep和fgrepGrep(globalsearchregularexpressionandprintouttheline全局搜索正则表达式并把行打印出来),是一种强大的文本搜索工具,egrep和fgrep的命令跟grep只有很少的差别,linux使用的是GNU版本的grep,功能非常强大,可以通过-G,-..
分类:
其他好文 时间:
2014-08-28 02:08:59
阅读次数:
432
Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element....
分类:
其他好文 时间:
2014-08-26 22:52:26
阅读次数:
203
第一章 正则表达式概述正则表达式(Regular Expression)起源于人类神经系统的研究。正则表达式的定义有以下几种:l 用某种模式去匹配一类字符串的公式,它主要是用来描述字符串匹配的工具。l 描述了一种字符串匹配的模式。可以用来检查字符串是否含有某种子串、将匹配的子串做替换或者从中取出符合...
分类:
其他好文 时间:
2014-08-26 15:15:36
阅读次数:
264
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:
其他好文 时间:
2014-08-25 16:20:54
阅读次数:
161
1 class Solution { 2 public: 3 bool isMatch(const char *s, const char *p) { 4 // Start typing your C/C++ solution below 5 // DO N...
分类:
其他好文 时间:
2014-08-25 13:16:14
阅读次数:
165
正则表达式的资源和工具汇集(下)作者:chszs,转载需注明。博客主页:http://blog.csdn.net/chszs8. RegEx Guide by Mozilla地址:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions这是来自Mozilla的正则表达式指南,它非常简单、明了。...
分类:
其他好文 时间:
2014-08-24 16:47:03
阅读次数:
223