Welcome![Sign In][Sign Up]
Location:
Search - regular expression java

Search list

[Other resourceRegular-expressions-simplifypattern-matching-code.

Description: 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 code, Java provides regular expressions. After introducing you to terminology and thejava.util. regex package, Jeff Friesen explores many regular expression constructs supported by that package s Pattern class. Then he examines Pattern s methods and the additionaljava.util. regex classes. In conclusion, he presents a practical application of regular expressions.
Platform: | Size: 112314 | Author: qlw | Hits:

[JSP/Java使用lex分析java源程序

Description: Lex是美国Bell实验室用C语言研制的一个词法分析程序自生成工具。它的基本原理就是使用正则表达式扫描匹配文本,并为每一个匹配模式定义一些操作,当用C语言作宿主语言时,这些操作都由C语言实现。一种匹配的正则表达式可能会包含相关的动作。这一动作可能还包括返回一个标记。当 Lex 接收到文件或文本形式的输入时,它试图将文本与正则表达式进行匹配。它一次读入一个输入字符,直到找到一个匹配的模式。如果能够找到一个匹配的模式,Lex 就执行相关的动作(可能包括返回一个标记)。-Lex Bell Laboratories of the United States with C language developed by a lexical analysis tool generated from the process. Its fundamental principle is to use a regular expression matching text scanning, and for every definition of a matching model for operation, when the C language of the host language, these operators by C language. A match of which is likely to contain expressions related to the moves. This action may also include the return of a marker. When Lex reception of the document or text input, it is trying to text and is a regular expression matching. It read an input into the characters, until they found a matching pattern. If they can find a matching model, Lex on the implementation of the action (which may include a return of markings).
Platform: | Size: 2994 | Author: 万宏兴 | Hits:

[JSP/JavaApress.Java.Regular.Expressions

Description: 这是一本关于正则表达式编程的英文原版书,内容详实,正则表达式可用于各种文本处理场合,比常规的文本处理方法快捷高效。-This is a book introducing Regular Expression programming.
Platform: | Size: 863012 | Author: bill | Hits:

[JSP/Java使用lex分析java源程序

Description: Lex是美国Bell实验室用C语言研制的一个词法分析程序自生成工具。它的基本原理就是使用正则表达式扫描匹配文本,并为每一个匹配模式定义一些操作,当用C语言作宿主语言时,这些操作都由C语言实现。一种匹配的正则表达式可能会包含相关的动作。这一动作可能还包括返回一个标记。当 Lex 接收到文件或文本形式的输入时,它试图将文本与正则表达式进行匹配。它一次读入一个输入字符,直到找到一个匹配的模式。如果能够找到一个匹配的模式,Lex 就执行相关的动作(可能包括返回一个标记)。-Lex Bell Laboratories of the United States with C language developed by a lexical analysis tool generated from the process. Its fundamental principle is to use a regular expression matching text scanning, and for every definition of a matching model for operation, when the C language of the host language, these operators by C language. A match of which is likely to contain expressions related to the moves. This action may also include the return of a marker. When Lex reception of the document or text input, it is trying to text and is a regular expression matching. It read an input into the characters, until they found a matching pattern. If they can find a matching model, Lex on the implementation of the action (which may include a return of markings).
Platform: | Size: 3072 | Author: 万宏兴 | Hits:

[Internet-Network运用异步输入输出流编写Socket进程通信

Description: 代码号为”Merlin”的J2SE1.4带来了一些激动人心的新特性,诸如对正则表达式的支持,异步输入输出流,通道(Channel),字符集等.虽然该版本还处在测试阶段,但这些新特性早已让开发人员们跃跃欲试.在Merlin发布之前,异步输入输出流的应用还只是C,C++程序员的特殊武器 在Merlin中引入异步输入输出机制之后,Java程序员也可以利用它完成很多简洁却是高质量的代码了.本文将介绍怎样使用异步输入输出流来编写Socket进程通信程序.-code, as "Merlin" J2SE1.4 brought some exciting new features, such as the right is a regular expression support, asynchronous input and output streams, channel (Channel), such as character set. Although this version is still in the testing stage, but these new features make the developers who the dismissive. before the publication of the Merlin, asynchronous input and output streams of only C, C programmer in the special weapons Merlin introduced asynchronous input-output mechanisms, Java programmers can also use a lot of it is simple but high-quality code. this article will introduce how to use asynchronous losers into the output stream to the process of preparing Socket Communication Program.
Platform: | Size: 5120 | Author: 陈浩 | Hits:

[JSP/Javareg2nfa

Description: 程序用JAVA语言编写, 综合利用图结构和堆栈结构进行数据组织和处理. 可以进行正则表达式到NFA的转化, 并能用图形直观的表示. 对正则表达式有一些约定, 就是可以用单个字符表示输入, 也可以用 ‘ ‘ 连接起来的一串字符进行输入. 有基本的表达式以及由基本表达式构成的并置, 选择和重复的操作. 例: A|b*c ‘letter’*’digit’ 等都是合法输入. 还带有括号功能, 优先级 -procedures using Java language. Comprehensive Utilization graph structure and stack structure and data processing. it is a regular expression for NFA to the transformation and can use the intuitive graphical said. Regular expressions are to some agreement and it is expressed with a single character input, we could also use '' linking the string of characters for importation. a basic expressions and by the basic form of expression and Home and choose and repeat the operation. cases : A | b* c 'letter'* 'digit' are all legally imported. also bracketed with functionality, prioritized
Platform: | Size: 12288 | Author: onlyerlee | Hits:

[2D GraphicJavaDictionary

Description: 一个Java编的小词典,图形界面,用正则表达式实现简单的字典查询-a series of small Java Dictionary, graphics interface, is a regular expression with simple dictionary inquiry
Platform: | Size: 2833408 | Author: apple | Hits:

[Software EngineeringRegular-expressions-simplifypattern-matching-code.

Description: 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 code, Java provides regular expressions. After introducing you to terminology and thejava.util. regex package, Jeff Friesen explores many regular expression constructs supported by that package s Pattern class. Then he examines Pattern s methods and the additionaljava.util. regex classes. In conclusion, he presents a practical application of regular expressions.-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 code, Java provides regular expressions. After introducing you to terminology and thejava.util. regex package, Jeff Friesen explores many regular expression constructs supported by that package s Pattern class. Then he examines Pattern s methods and the additionaljava.util. regex classes. In conclusion, he presents a practical application of regular expressions.
Platform: | Size: 111616 | Author: qlw | Hits:

[JSP/Javareg2NFA(java)

Description: 正则表达式到NFA,NFA到DFA的JAVA实现,图形表示结果。-Regular Expression to NFA, NFA to DFA s JAVA realized, graphical representation of results.
Platform: | Size: 35840 | Author: 洪兴 | Hits:

[ELanguageDFA

Description: 输入一个正则表达式,输出相应的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 table structure generated by a subset of re-painting DFA graph), DFA minimization (also requires drawing method)
Platform: | Size: 14336 | Author: liyingan | Hits:

[JSP/JavaRegular.Expression.Pocket.Reference.2nd.Edition.Ju

Description: Oreilly出版的正则表达式参考手册,全面介绍了C, Perl, PHP, Java, .NET, Python, vi, and the POSIX的正则表达式库。-Oreilly published regular expressions reference manual, a comprehensive introduction to C, Perl, PHP, Java,. NET, Python, vi, and the POSIX regular expression library.
Platform: | Size: 873472 | Author: 王鹏 | Hits:

[ELanguageMain

Description: 这是一个模拟编译器词法分析的程序。输入正则表达式,再输入一个字符串,该程序可以判定字符串是否符合正则式的规则-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
Platform: | Size: 4096 | Author: zhao | Hits:

[OtherFA

Description: 正则表达式->NFA/DFA/最简表达式-Regular Expression-> NFA/DFA/the most simple expression
Platform: | Size: 263168 | Author: 王据林 | Hits:

[JSPRegularExpression

Description: 如果你曾经用过Perl或任何其他内建正则表达式支持的语言,你一定知道用正则表达式处理文本和匹配模式是多么简单。如果你不熟悉这个术语,那么“正则表达式”(Regular Expression)就是一个字符构成的串,它定义了一个用来搜索匹配字符串的模式。-If you' ve ever used Perl, or any other built-in support for regular expression language, you must know to use regular expressions to process text and matching model is so simple. If you are not familiar with this term, then the " regular expression" (Regular Expression) is a character string composed of, which is used to define a search pattern matches the string.
Platform: | Size: 234496 | Author: newmaple | Hits:

[OtherNFA2RegularExpression

Description: 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 Written with java
Platform: | Size: 919552 | Author: liu p | Hits:

[JSP/Javalianxi

Description: java实验编写输入一个数n,输出一个杨辉三角,-Enter the regular expression compiler output principle experiment DFA optimization
Platform: | Size: 2048 | Author: dai | Hits:

[JSP/Javajava-validation-with-regular-expression

Description: java validation with regular expression
Platform: | Size: 2048 | Author: shobi | Hits:

[JSP/JavaApress.Java.Regular.Expressions

Description: 这是一本关于正则表达式编程的英文原版书,内容详实,正则表达式可用于各种文本处理场合,比常规的文本处理方法快捷高效。-This is a book introducing Regular Expression programming.
Platform: | Size: 863232 | Author: bill | Hits:

[JSPJava-regular-expression

Description: java 的正则表达式 方法和很多实例-Java regular expression
Platform: | Size: 219136 | Author: bao.zhou | Hits:

[JSPJAVA-regular-expression-syntax

Description: JAVA regular expression syntax JAVA regular expression syntax-JAVA regular expression syntaxJAVA regular expression syntaxJAVA regular expression syntax
Platform: | Size: 229376 | Author: Tangbowen | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net