CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - regular expression matching

搜索资源列表

  1. ExpIsCorrect

    0下载:
  2. 栈结构检验表达式中括号是否匹配的源代码,适合初学者进一步学习数据结构-stack testing regular expression matching brackets whether the source code for beginners further study data structure
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1413
    • 提供者:陈珲
  1. CSharpZZBDS

    0下载:
  2. 如果你曾经用过Perl或任何其他内建正则表达式支持的语言,你一定知道用正则表达式处理文本和匹配模式是多么简单。如果你不熟悉这个术语,那么“正则表达式”(Regular Expression)就是一个字符构成的串,它定义了一个用来搜索匹配字符串的模式。-If you have used Perl or any other built-in regular expression support for the language, You know, regular expression matchi
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:83666
    • 提供者:qingao
  1. RegularExpressionSearch

    0下载:
  2. visual studio2005 开发的MFC程序,可以匹配正则表达式,进行查找和替换,速度很快。-development of the visual studio2005 MFC procedures, regular expression matching, search and replace, very fast.
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:243606
    • 提供者:zuoyinbo
  1. kuaohao

    1下载:
  2. 判断表达式中括号是否配对的小程序-judgment regular expression matching brackets whether the small program
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:846
    • 提供者:何玲
  1. yuanma.rar

    0下载:
  2. 数据结构的几个小程序:汉诺塔,杨辉三角,括号匹配,表达式求值,Data structure of several small programs: Tower of Hanoi, Yang Hui Triangle bracket matching, regular expression evaluator
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:5136
    • 提供者:吴用
  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-28
    • 文件大小:13120
    • 提供者:denghuashan
  1. RegExp

    0下载:
  2. 实现正则表达式匹配。匹配速度很快,可以很方便的嵌入到自己的程序-The realization of regular expression matching. Fast.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:15225
    • 提供者:fanyu
  1. zhengzebiaodashi

    0下载:
  2. 详细的简介.net中正则表达式的用法和如何使用正则表达式的接口函数(主要是编译函数,匹配函数)-A detailed profile. Net regular expression usage and how to use regular expressions interface functions (mainly compiled function, matching function)
  3. 所属分类:.net

    • 发布日期:2017-05-28
    • 文件大小:10936941
    • 提供者:林可可
  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. chengshi

    0下载:
  2. 运用模式匹配的思想,正则表达式的工具,对网页中图形,文字的截取,还有函数编程,字典的应用-Ideas using pattern matching, regular expression tool, web page graphics, text capture, also function programming, the application dictionary
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1262
    • 提供者:yandongbin
  1. zzbds

    0下载:
  2. 正则表达式的运用 字符串或字符匹配 字符串查找 字符串替换-The use of regular expression matching the string search string or character string replacement
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:5088
    • 提供者:小强
  1. 20063189571308

    0下载:
  2. 主要功能有: 1. 简单文本编辑功能 2. 语法作色功能 3. 正则表达式匹配替换功能 4. 2006-2-9 增加书签功能(待修改) 5. 2006-2-12 改善正则匹配功能,增加在匹配数据中搜索功能 6. 2006-2-17 改善语法着色的设置功能 7. 2006-2-21 增加快速语法着色颜色设置功能,添加delphi风格,Visua Studio风格, 和自定义三种选择! 8. 2006-2-21 修改书签显示,添加文件名 9
  3. 所属分类:File Operate

    • 发布日期:2017-04-08
    • 文件大小:760774
    • 提供者:xlnim168
  1. FindString

    0下载:
  2. 一种简易的字符串匹配程序,支持通配符‘*’和‘?’,返回匹配成功次数。含测试程序,后续可进一步增加正则表达式处理。-A simple string matching program to support the wildcard ' *' and ' ? ' , Returns the number of successful matches. Including test procedures, follow-up can further increase the r
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:332877
    • 提供者:albert
  1. CodeLineCounter222

    0下载:
  2. C#编写的代码行数统计的程序,使用正则表达式匹配,可以选择计数文件和不参与计数的文件-Lines of code written in C# the number of statistical procedures, the use of regular expression matching, you can choose not to participate counting counting files and documents
  3. 所属分类:CSharp

    • 发布日期:2017-04-16
    • 文件大小:233446
    • 提供者:pain0
  1. htdocs

    0下载:
  2. PHP正则匹配、查找、修改、删除实例 -PHP regular expression matching, search, modify, delete instances PHP regular expression matching, search, modify, delete instances
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:2554
    • 提供者:赵小见
  1. Regular-Expression-Matching

    0下载:
  2. 一个很好的正则表达式匹配算法,常出现在一些公司的笔试题中。-Regular Expression Matching
  3. 所属分类:Other systems

    • 发布日期:2017-05-02
    • 文件大小:677622
    • 提供者:wxd
  1. zhengzebiaodashi--java

    0下载:
  2. 这是一段正则表达式匹配Java方法的源代码,希望对正则表达式在java使用方面有疑问的童鞋有帮助-This is a regular expression matching approach java source code, hope helpful for regular expressions in Java use question of children s shoes
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-28
    • 文件大小:200254
    • 提供者:ghh
  1. NFA

    0下载:
  2. 使用java语言实现无穷自动状态机,实现正则表达式的匹配。-Unlimited use of java language automatic state machine, implement regular expression matching.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2348
    • 提供者:chenhuibing
  1. deelx

    1下载:
  2. 正则表达式_VC集成库源代码,编译后可直接使用,对正则式匹配做了上层封装。-Regular expressions _VC integrated library source code, compiled can be used directly for the regular expression matching do upper package.
  3. 所属分类:File Operate

    • 发布日期:2017-04-28
    • 文件大小:42203
    • 提供者:zzx
  1. RegTest

    0下载:
  2. C#做的正则表达式匹配工具,可以实时显示匹配结果,带分组输出。(C# do regular expression matching tool, you can display the matching results in real-time, with packet output.)
  3. 所属分类:C#编程

    • 发布日期:2017-12-27
    • 文件大小:71680
    • 提供者:胖子叶开
« 12 »
搜珍网 www.dssz.com