当前位置:
首页 资源下载
搜索资源 - java expression regular
搜索资源列表
-
0下载:
代码号为”Merlin”的J2SE1.4带来了一些激动人心的新特性,诸如对正则表达式的支持,异步输入输出流,通道(Channel),字符集等.虽然该版本还处在测试阶段,但这些新特性早已让开发人员们跃跃欲试.在Merlin发布之前,异步输入输出流的应用还只是C,C++程序员的特殊武器 在Merlin中引入异步输入输出机制之后,Java程序员也可以利用它完成很多简洁却是高质量的代码了.本文将介绍怎样使用异步输入输出流来编写Socket进程通信程序.-code, as "Merlin&quo
-
-
0下载:
Text processing often involves matching text against a pattern. Although Java s character and assorted string classes offerlow- levelpattern- matching support, that support commonly leads to complex code. To help you write simplerpattern- matching co
-
-
0下载:
Lex是美国Bell实验室用C语言研制的一个词法分析程序自生成工具。它的基本原理就是使用正则表达式扫描匹配文本,并为每一个匹配模式定义一些操作,当用C语言作宿主语言时,这些操作都由C语言实现。一种匹配的正则表达式可能会包含相关的动作。这一动作可能还包括返回一个标记。当 Lex 接收到文件或文本形式的输入时,它试图将文本与正则表达式进行匹配。它一次读入一个输入字符,直到找到一个匹配的模式。如果能够找到一个匹配的模式,Lex 就执行相关的动作(可能包括返回一个标记)。-Lex Bell Labora
-
-
0下载:
这是一本关于正则表达式编程的英文原版书,内容详实,正则表达式可用于各种文本处理场合,比常规的文本处理方法快捷高效。-This is a book introducing Regular Expression programming.
-
-
0下载:
这是一本关于正则表达式编程的英文原版书,内容详实,正则表达式可用于各种文本处理场合,比常规的文本处理方法快捷高效。-This is a book introducing Regular Expression programming.
-
-
0下载:
输入一个正则表达式,输出相应的NFA图,NFA转换为DFA(得到的DFA图要求用画图方法完成并要求先产生子集构造表出来再画DFA图),DFA最小化(也要求用画图方法完成)
-Enter a regular expression, the output corresponding NFA map, NFA is converted to DFA (the DFA plans to be asked to use drawing methods and called for the first
-
-
0下载:
编译原理实验包括正规式到NFA,NFA到DFA、LL1、LR代码都执行过,都没有错误-Compile regular expression to the principle experiment, including NFA, NFA to DFA, LL1, LR code is executed, no errors
-
-
0下载:
这是一个模拟编译器词法分析的程序。输入正则表达式,再输入一个字符串,该程序可以判定字符串是否符合正则式的规则-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
-
-
0下载:
正则表达式->NFA/DFA/最简表达式-Regular Expression-> NFA/DFA/the most simple expression
-
-
0下载:
this program delete comments the java with regular expression using regex
-
-
0下载:
这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化,中间代码生成目标代码,目标代码的解释执行-This is the principle of compiling source code, the various principles involved in the compilation process: lexical analysis, LL1 parsing, semantic analysis, intermediate co
-
-
0下载:
regular expression转换为NFA
NFA转换到regular expression
包含设计说明文档、可执行程序、源代码等;清晰明了;
用java编写;-regular expression into NFA
NFA transition to regular expression
Includes design documentation, executable programs, source code, etc. clarity
Writ
-
-
0下载:
正则表达式的运用
字符串或字符匹配
字符串查找
字符串替换-The use of regular expression matching the string search string or character string replacement
-
-
0下载:
java实验编写输入一个数n,输出一个杨辉三角,-Enter the regular expression compiler output principle experiment DFA optimization
-
-
0下载:
java validation with regular expression
-
-
0下载:
比较简单的一个java写的表达式计算器。核心算法为经典的中缀转逆波兰算法。用了正则表达式进行合法性检查。新人刚学java,写的不好的地方请指正,谢谢!-Relatively simple to write a java expression evaluator. The core algorithm classic infix turn Reverse Polish algorithm. Use regular expressions to check the legality. Newcome
-
-
0下载:
JAVA正则表达式语法,doc格式,解释了一些正则表达式的用法-JAVA regular expression syntax, doc format to explain some of the regular expression usage
-
-
0下载:
现在网上有许多用java实现的获取MAC地址的方法,都是利用了windows系统的config命令,但是这些方法都是直接查找config命令的输出字符串。这种方法对一种语言的windows系统还可以,当在其它语言的系统下运行时,就会出现问题,本文的代码利用正则表达式,使获取MAC地址的程序能够在多语言环境下运行。-Get the MAC address of the method of realization of java online, are using the windows syste
-
-
0下载:
这是一段正则表达式匹配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
-
-
0下载:
The main job of the scanner is to identify and return the next token. The value to be returned includes:
the token "name" (e.g., INTLITERAL). Token names are defined in the file sym.java
the line number in the input file on which the toke
-