CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 正则表达式

搜索资源列表

  1. charmatch

    0下载:
  2. 基于正则表达式的字符串匹配,对于学习正则表达式和字符串的同学们十分有帮助-Based on regular expression string matching, regular expressions for the learning of students and string very helpful
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:273033
    • 提供者:Yang
  1. JavaReg

    0下载:
  2. Java中的正则表达式,使用方法,以及一些常用的表达式.-Java s regular expressions, the use of methods, as well as some commonly used expressions.
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:10355
    • 提供者:xiahy
  1. RegexExample1

    0下载:
  2. 输入某个正则表达式和一个字符串,然后验证该字符串中是否包含与正则表达式匹配的内容。 -Enter a regular expression and a string, and then verify whether the string contains regular expression matching the content.
  3. 所属分类:.net

    • 发布日期:2017-04-29
    • 文件大小:13120
    • 提供者:denghuashan
  1. RegTest

    0下载:
  2. 正则表达式测试工具,用于测试正则表达式的工具-a soft ware for RegTest
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:29863
    • 提供者:彭郭盛
  1. RegularExpression

    0下载:
  2. 精通正则表达式 英文版第一版 pdf 中文版 第三版 chm格式-Mastering Regular Expressions the first edition in English(pdf) and the the third edition in Chinese version(chm)
  3. 所属分类:Editor

    • 发布日期:2017-05-13
    • 文件大小:3410733
    • 提供者:
  1. RegularExp

    0下载:
  2. VC6等VC编译器下非常好用的正则表达式封装类。经过我精心封装,使用非常方便。非常难得的资料。请管理员帮我开通下载权限,谢谢!-VC compilers such as VC6 very useful type of regular expression packages. After I carefully package and is very convenient to use. Information is very rare. Please help me to open downlo
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:18595
    • 提供者:baofanfan
  1. Missing

    0下载:
  2. 姓名缺失匹配查找,以用于检查列表,方便开发其他匹配运算的正则表达式-Find the names of missing matches for check list to facilitate the development of the other match of the regular expression operator
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:316853
    • 提供者:王思
  1. code2html

    0下载:
  2. 利用正则表达式实现将C++代码转换为html页面并对不同类别关键字高亮显示。编译时需boost/regex库支持。-Use regular expressions to achieve the C++ code into a html page and highlight the different types of keywords. When compiling boost/regex library support.
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:152536
    • 提供者:晓阳
  1. WebExtractor

    0下载:
  2. 从网页中自动提取有价值的信息,例如email,图片,下载文件地址等,程序利用正则表达式技术判断。- Automatically from a web page to extract the valuable information, such as email, pictures, download the file addresses, the program to use regular expressions technical judgments.
  3. 所属分类:Internet-Socket-Network

    • 发布日期:2017-05-04
    • 文件大小:1047763
    • 提供者:yvweizhong
  1. Regular

    0下载:
  2. 自己在做项目中实现的正则表达式,非学实用。-Regular.zip
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-04
    • 文件大小:391196
    • 提供者:王华
  1. regular_expression

    0下载:
  2. 揭开正则表达式的神秘面纱,介绍了表达式的使用方法和注意事项,对需要用这个的人带来了很大的帮助。-Reveal the mysterious veil of regular expressions is introduced to use the expression and attention to matters that need to use this to bring a great help.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:11755
    • 提供者:wanglei
  1. TRegexpr

    1下载:
  2. Delphi平台下非常好用的正则表达式控件源码。-Delphi platform is very easy to use regular expression source code control.
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-01
    • 文件大小:751570
    • 提供者:chaque
  1. Collection1.0

    0下载:
  2. 一个简单的网页采集系统,是一个为初学者提供实现网页数据采集思路的源码,通过请求网页来抽取源码,并用正则表达式提取内容以及转换为XML格式遍历内容并存入Access数据库中。-A simple web collection system is available for beginners to achieve a web page source data collection ideas, through the request page to extract source code, and
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:63587
    • 提供者:高宏伟
  1. stringmatching

    0下载:
  2. 可以采用正则表达式来实现字符串匹配功能。一种简单的正则表达式是由英文字母(区分大小写)、数字及通配符"*"和"?"任意组合而成的。"?"代表任意一个字符,"*"代表零个或任意多个字符。例如,a*b可以匹配acb,aabb,afdfdb,ab等,但不可以匹配ac,bb,abbc;a?b可以匹配acb,abb,但不可以匹配ab,accb。试编写一个程序,从文件中读入N个字符串,再从键盘上读入任意一个合乎规则的正则表达式,例如:"a?bb*d",输出符合正则表达式的字符串。 查询的字典文件为
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:1707
    • 提供者:wind
  1. Nodepad

    0下载:
  2. 、文件搜索功能(仿照windows的来写) 2.1 界面完全仿照windows 2.2 增加文件内码识别功能 2.3 增加RES正则表达式搜索功能-a
  3. 所属分类:Windows Develop

    • 发布日期:2016-01-25
    • 文件大小:31526
    • 提供者:陈小强
  1. JavaHighendprogramming

    0下载:
  2. 第1章讲述了Javascr ipt的起源,给大家一个关于Javascr ipt正确的认知。 第2~5章详细介绍了Javascr ipt语言本身,揭示了一些Javascr ipt不为认知的语言特点。 第6~9章介绍了Javascr ipt和浏览器进行交互的一些基础知识和一些进阶知识,如DOM的基础、正则表达式。 第10~13章介绍了一些更加高级的Javascr ipt技巧,这些技巧可以构建良好的客户端逻辑,包括表格排序、拖动等。 第14章关于错误处理的内容,既有如何编程处理
  3. 所属分类:Other systems

    • 发布日期:2017-05-13
    • 文件大小:3130884
    • 提供者:yangjie
  1. TPerlRegExforD2010

    0下载:
  2. 正则表达式空间,包括Delphi2010-TPerlRegExforD2010.zip
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-05
    • 文件大小:232208
    • 提供者:老子
  1. regexp_vc

    0下载:
  2. Visual C++ 6 调用vbs COM 组件提供的正则表达式的方法-Visual C++ 6 call vbs COM component provides a method of regular expressions
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:7083
    • 提供者:zhouxiang
  1. regexpr

    0下载:
  2. 正则表达式的一个demo,我就是用这个学的正则-regex
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-04
    • 文件大小:120923
    • 提供者:zhaozhao
  1. Form2

    0下载:
  2. C# 最简单的正则表达式验证文本输入的例子-C# The simplest example of a regular expression validation
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:854
    • 提供者:齐家林
« 1 2 34 5 6 7 8 9 10 ... 48 »
搜珍网 www.dssz.com