CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 编译器/词法分析 搜索资源 - regular expression

搜索资源列表

  1. 09语义分析

    0下载:
  2. 词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行,详细地阐述了一个编译器的设计和实现.-lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression opt
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:27.4kb
    • 提供者:数据库
  1. 110100

    0下载:
  2. 这是以纯汇编编写的正则表达式引擎库,与通用的正则表达式略有不同,加了几个很有特色的功能,能实现非常复杂的查找.所有符号除特别说明均可随意组合.所有符号均支持*与+.均可设置条件.(*/+)-<>/[]与|的组合能实现很复杂的多条件复合查询式查找.只要是文本,就可以按自己的意思进行查找.具体,需要你仔细的使用才能体会到它的强大。 -This is purely a compilation prepared by the regular expression engine base
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:13.09kb
    • 提供者:江洪洪
  1. deelx

    0下载:
  2. 看看吧C加加环境下的正则表达式引擎deelx-do is look at it under the regular expression engine deelx
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:15.75kb
    • 提供者:zhouwei
  1. MyREG

    0下载:
  2. 我的一个利用有限状态机的正则表达式的实现。-I use a finite state machine in the regular expression is achieved.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:35.61kb
    • 提供者:yaowei
  1. regular_to_DFA

    0下载:
  2. 编译原理---正则表达式到DFA的演示程序- Translation principle --- regular expression to DFA demonstration program
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:76.78kb
    • 提供者:黄志成
  1. Regular

    1下载:
  2. 输入一个正则表达式,可以使用: 小写字母或数字,表示终结符;*,闭包;+,并集;~,补集;E,空串;O,空集 然后程序将生成 相应的NFA,以及化简之后的DFA,最后再输入一个字符串,程序判断它是否满足该正则表达式-input is a regular expression, you can use : lowercase letters or numbers, said Fu end; * Closure; , And set; To complement the set; E, empty
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:171.39kb
    • 提供者:杨震原
  1. asdfadsfd

    0下载:
  2. 编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行,详-compiler source code, the compiler principles involved in various processes : lexical analysis, LL1 syntax analysis, semantic analysis and code gener
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1.5kb
    • 提供者:长波
  1. 编译原理—词法分析和语法分析 实验报告

    2下载:
  2. 词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码-lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression optimization, optimization
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:50.86kb
    • 提供者:张学友
  1. zy200512345

    0下载:
  2. 这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行.. -this principle is to compile the source code, the compiler principles involved in various processes : lexical analysis, LL1 syntax analysis, seman
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:115.34kb
    • 提供者:张学友
  1. reparse

    0下载:
  2. 功能比较强的正则表达式分析器,支持重复次数。尝试完全采用C++实现。可能速度不快。-function relatively strong in the regular expression analyzer, the number of repeat support. C to achieve completely. May slow.
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:11.5kb
    • 提供者:俞怡炜
  1. bianyiyuanli

    0下载:
  2. 一. 实验目的: 设计、编写和调试一个具体的词法分析程序,加深对词法分析理论和自动词法分析工具的理解、实践和掌握。 二. 实验要求: ① 学习和理解正则表达式理论,写出C—语言的记号的完整的正则表达式;(适当使用正则定义) ② 学习和理解有限机理论,根据前面的正则表达式,用基于经验的方法画出C—语言的记的DFA图; ③ 用基于DFA图的算法编写C—语言的词法分析程序; ④ 学习词法分析程序的自动生成工具,使用LEX工具实现C—语言的词法分析程序.- 1. Experimental goal: T
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:144.4kb
    • 提供者:晨曦
  1. jakarta-regexp-1.5

    0下载:
  2. jakarta-regexp-1.5 正则表达式的源代码-jakarta-regexp-1.5 regular expression source code
  3. 所属分类:Compiler program

    • 发布日期:2017-03-22
    • 文件大小:227.12kb
    • 提供者:袁东
  1. regex

    0下载:
  2. 从一个开源软件中摘取的正则表达式模块,是学习正则表达式、编译原理的好东西。-From an open-source software in the removal of the regular expression module, is to learn regular expressions, compile the principle of good things.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-29
    • 文件大小:117.29kb
    • 提供者:yingjie
  1. RegularExpression

    0下载:
  2. 正则表达式由一些普通字符和一些元字符(metacharacters)组成。普通字符包括大小写的字母和数字,而元字符则具有特殊的含义.本程序用于将式子翻译成正则表达式.-Regular expression by a number of common characters and some meta characters (metacharacters) component. Ordinary characters, including upper and lower case letters a
  3. 所属分类:Compiler program

    • 发布日期:
    • 文件大小:31.71kb
    • 提供者:03
  1. TEMPLATE

    0下载:
  2. 输入正则表达式,转化为NFA,DFA,从测试文档中找出最大匹配子串-Enter the regular expression into NFA, DFA, document from the test to find out the biggest match Substring
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:66.17kb
    • 提供者:
  1. Regx

    0下载:
  2. 用netbean 实现的简单正则表达式调试器-This regular expression debugger is implemented by java in netbean develop toolkit!
  3. 所属分类:Compiler program

    • 发布日期:2017-04-28
    • 文件大小:59.64kb
    • 提供者:LiBin
  1. Lexical_analysis

    0下载:
  2. 智能的词法分析 ,能任意输入正则表达式,能求出NFA,DFA,minDFA,和最后的匹配情况-Lexical analysis of intelligence, can enter any regular expression can be obtained NFA, DFA, minDFA, and the final match of the situation
  3. 所属分类:Compiler program

    • 发布日期:2017-04-26
    • 文件大小:431.16kb
    • 提供者:
  1. zhengcebiaodashi30m

    0下载:
  2. 这是一个关于正则表达式的详细说明文档,对于想学好编译的同学,是大有好处的-This is a regular expression on a detailed descr iption of the document, compiled for the students would like to learn, is good
  3. 所属分类:Compiler program

    • 发布日期:2017-04-29
    • 文件大小:49.07kb
    • 提供者:张慧
  1. Main

    0下载:
  2. 这是一个模拟编译器词法分析的程序。输入正则表达式,再输入一个字符串,该程序可以判定字符串是否符合正则式的规则-This is a simulation compiler lexical analysis process. Enter the regular expression, and then enter a string, the program can determine whether the string is the type of rules
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:3.8kb
    • 提供者:zhao
  1. lex

    0下载:
  2. 用c++实现的此法分析器,包括正则表达式解析,正则到NFA转换,NFA到DFA转换,和最终的匹配,详见包中README文件-Using c++ parser to achieve this method, including regular expression analysis, while the NFA is converted, NFA to DFA conversion, and end the match, see the package README file
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:15.51kb
    • 提供者:0x7c00
« 12 »
搜珍网 www.dssz.com