推荐个正则表达式在线测试的工具http://ccmpp.com/Regex/Notepad++正则表达式使用 2011-01-06 10:01:35| 分类:
文档 | 标签:正则表达式 替换 notepad++ 匹配 查找 |举报|字号 订阅 使用正则表达式可以很好地...
分类:
其他好文 时间:
2014-05-26 09:56:40
阅读次数:
388
Python能够成为流行的数据处理语言,部分原因是其简单易用的字符串和文本处理功能。大部分文本运算都直接做成了字符串对象的内置方法。对于更为复杂的模式匹配和文本操作,则可能需要用到正则表达式。pandas对此进行了加强,它使你能够对数组数据应用字符串表达式和正则表达式,而且能处理烦人的缺失数据。...
分类:
编程语言 时间:
2014-05-26 03:42:44
阅读次数:
443
http://www.catalogueoflife.org/col/browse/classification这是一个国外的生物信息网站今天的代码可以抓取指定分类的信息(id,学名)没有把多线程写进去,略失败...运用:webclient,regex,io项目在>>>开源中国
1 using Sy...
分类:
其他好文 时间:
2014-05-23 22:08:34
阅读次数:
332
做新浪微博第三方客户端时,对正文内容的特殊字符(如网页短链接、##话题、@人名等)进行高亮变色,需要用到以下几个正则表达式。 1
/**微博短链接正则表达式*/2 static final String regex_http = "http(s)?://([a-zA-Z|\\d]+\...
分类:
移动开发 时间:
2014-05-23 09:39:42
阅读次数:
457
(?=exp)\w+ //匹配后面接着exp的\w+(?<=exp)\w+
//匹配前面是exp的\w+关键字:\ . = - ^ * + ( ) [ ] { } //(以后再补充吧)MSDN的regex类
分类:
其他好文 时间:
2014-05-22 14:22:19
阅读次数:
218
function
is_mobile(){$regex_match="/(nokia|iphone|android|motorola|^mot\-|softbank|foma|docomo|kddi|up\.browser|up\.link|";$regex_match.="htc|dopod|bl...
分类:
移动开发 时间:
2014-05-21 19:02:55
阅读次数:
302
public static string checkStr(string html) {
System.Text.RegularExpressions.Regex regex1 = new
System.Text.RegularExpressions.Regex...
分类:
Web程序 时间:
2014-05-19 20:31:20
阅读次数:
385
string strPatten = "(src|href)=(.*?)[>| ]";
string strContent = " "; Regex reg = new Regex(strPatten); foreach (Match match
in...
分类:
其他好文 时间:
2014-05-16 20:00:47
阅读次数:
266
Regular Expression Special Characters
"."---Any single character(a "wildcard")
"["---Begin character class
"]"---End character class
"{"---Begin count
"}"---End count
"("---Begin grouping
")"...
分类:
其他好文 时间:
2014-05-15 01:41:09
阅读次数:
548
{
"cmd":["g++","${file}","-o","${file_path}/${file_base_name}"],
"file_regex":"^(..[^:]*):([0-9]+):?([0-9]+)?:?(.*)$",
"working_dir":"${file_path}",
"selector":"source.c,source.c++",
"encoding":"cp936",
"variants":
[
{
"name":"Run",
"shell":true,
"cmd":["st..
分类:
编程语言 时间:
2014-05-14 17:25:25
阅读次数:
300