码迷,mamicode.com
首页 >  
搜索关键字:regular expressions    ( 2287个结果
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
c# async
?Methods (as well as lambda expressions or anonymous methods) can be markedwith the async keyword to enable the method to do work in a nonblockingmann...
分类:其他好文   时间:2014-06-21 17:58:34    阅读次数:197
Entity Framework 学习第二天 续
今天来写一点不一样的删除,修改,查询下面只写了几个方法 1 /// 2 /// 根据删除条件进行删除 3 /// 4 /// 5 public void remove(System.Linq.Expressions...
分类:其他好文   时间:2014-06-17 14:16:16    阅读次数:153
文本处理工具之一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
EF快速开发定义数据接口类(转)
using System;using System.Linq;using System.Linq.Expressions;using System.Data.Objects;namespace HENANLUHENG.Framework.EntityRepository{ public interf...
分类:其他好文   时间:2014-06-15 19:53:41    阅读次数:283
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
Boost库安装与使用
Boost库非常不错,所以我今天就安了它一下下。 Boost库不是C++标准库的一部分(据说在下一版本号的C++标准会採纳它),但它有一些标准库所没有的非常实用的一些功能,比方我非常须要的正則表達式(Regular Expression)。所以我今天就在GCC上安装这个...
分类:其他好文   时间:2014-06-10 20:49:53    阅读次数:308
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!