| Projects on Google Code | Results 1 - 10 of 103 |
The sregex module implements Structural Regular Expressions.
Structural Regular Expressions were created by Rob Pike
and covered in this paper:
http://doc.cat-v.org/bell_labs/structural_regexps/
Structural regular expressions work by describing the shape
of the whole string, not just the ...
=Xeger=
Think of it as the opposite of regular expression matchers. This library allows you to generate text that is guaranteed to match a regular expression passed in.
Let's take the regular expression:
{{{[ab]{4,6}c}}}
Using Xeger, you can now generate Strings matching this pattern like th...
RegexPal is a JavaScript regular expression tester implemented in JavaScript and available at [http://regexpal.com RegexPal.com]. It includes real-time regex syntax and match highlighting. The regex syntax highlighting is more complex than you might expect, as it strives to be aware of all aspects o...
算是我编译原理方面的入门作品吧,写这玩意儿的过程是痛苦的,时间是漫长的,乐趣是没有的,后续版本是不可能的,但收获是巨大的,里面的大部分技术被用到了我现在项目中。
无论如何也算个完整的regex引擎吧,支持基本的regex,命名,捕获,循环,前向预搜索,后向预搜索等等。恩,不细说了,有喜欢这类东西的朋友联系我吧:email : SolidusSnakeEx@gmail.com
grepWin is a simple search and replace tool which can use regular expressions to do its job. This allows to do much more powerful searches and replaces.
<wiki:gadget url="http://www.ohloh.net/projects/12788/widgets/project_users.xml" height="100" border="0" />
[http://grepwin.googlecode.com/s...
=!RegexFind=
==English==
A similar findbar but with regex support for Firefox.
==Português==
Uma barra de buscas similar a do Firefox, porém com suporte a expressões regulares.
===Donation/Doação===
[https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9024422 https://www...
=codes=
* RegexNfa - an Nfa implementation of regular expression.
The tool for building regular expression in eclipse galileo
it read a regex and validate it
Allows you to write php code like:
{{{
function test($x,$y){
echo $x;
yield($x,$y);
echo $y;
yield($y,$x);
}
test(1,2)[$a,$b | echo $a*$b];
test(2,3)[$a,$b | $a = $b+$a; echo $b*($a+$b)];
#Or bring it back the other way:
[$a, $b | echo $a*$b](1,2);
#Inline lambdas + d...