码迷,mamicode.com
首页 >  
搜索关键字:regular    ( 1979个结果
Regular Expression Matching
Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element....
分类:其他好文   时间:2014-07-12 13:17:10    阅读次数:248
Linux之grep命令
简介grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgr...
分类:系统相关   时间:2014-07-10 11:37:34    阅读次数:402
UVa401 回文词
PalindromesA regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string"ABCDEDCBA"is a palindr...
分类:其他好文   时间:2014-07-01 18:52:11    阅读次数:460
正则表达式
正则表达式(Regular Expressions) ---字符串处理利器基于java:【java中双反斜杠\等于一个反斜杠】用途:字符串匹配字符串查找【基于匹配】字符串替换【基于查找】例子:判断ip地址是否正确从网页中揪出email从网页中揪出连接等类:java.lang.stringjava.u...
分类:其他好文   时间:2014-06-28 10:03:51    阅读次数:163
python基础教程_学习笔记14:标准库:一些最爱——re
标准库:一些最爱 re re模块包含对正则表达式的支持,因为曾经系统学习过正则表达式,所以基础内容略过,直接看python对于正则表达式的支持。 正则表达式的学习,见《Mastering Regular Expressions》(精通正则表达式)   re模块的内容 最重要的一些函数   函数 描述 compile(pattern[,fl...
分类:编程语言   时间:2014-06-25 08:28:05    阅读次数:304
正则表达式
正则表达式 正则表达式,Regular Expression,用于描述特定文法的字符串。许多编程语言和工具都支持正则表达式。 正则表达式-符号一览: 字符 作用 转义字符 ^ 区配字符串的开始位置 $ 区配字符串的结束位置 * 重复n次,n>=0 + 重复...
分类:其他好文   时间:2014-06-25 08:13:06    阅读次数:229
stanford trex使用方法
一、stanford trex 简介 http://nlp.stanford.edu/software/tregex.shtml                  A java program for identifying patterns in trees                  Like regular expressions for strings, b...
分类:其他好文   时间:2014-06-24 18:51:30    阅读次数:344
Regular Expression Matching
题目 Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of the preceding element. The matching should cover the ent...
分类:其他好文   时间:2014-06-24 18:43:56    阅读次数:224
文本处理工具之一grep命令详解
grep(Globel Search Regular Expression and Printing out the line)全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,是一个对行进行操作的搜索工作,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包括grep、egrep和fgrep。 egrep表示扩展的grep,相比grep支持更多的元字符,"grep...
分类:其他好文   时间:2014-06-16 20:07:52    阅读次数:220
ruby 正则表达式Regexp
http://ruby-doc.org/core-2.1.2/Regexp.htmlRegexpARegexpholds a regular expression, used to match a pattern against strings. Regexps are created using ...
分类:其他好文   时间:2014-06-14 21:17:33    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!