Date: 2004-12-19T06:09:38 Editor: SebastianBazley <[EMAIL PROTECTED]> Wiki: Apache JMeter Wiki Page: RegularExpressions URL: http://wiki.apache.org/jakarta-jmeter/RegularExpressions
Added JRegexpTester and the Regulator etc Change Log: ------------------------------------------------------------------------------ @@ -6,6 +6,8 @@ There is also documentation on an older incarnation of the product at [http://www.savarese.org/oro/docs/OROMatcher/index.html OROMatcher User's guide], which might prove useful. +[http://www.oreilly.com O'Reilly] publishes Mastering Regular Expressions and has put some sample chapters [http://www.oreilly.com/catalog/regex2/chapter/ online]. [http://www.oreilly.com/catalog/regex2/chapter/ch08.pdf Chapter 8] is on Java, and includes some useful information on Jakarta-ORO. + === Overview === The pattern matching is very similar to the pattern matching in Perl. A full installation of Perl will include plenty of documentation on regular expressions - look for perlrequick, perlretut, perlre, perlreref. O'Reilly sell a book called "Mastering Regular Expressions" by Jeffrey Friedl which will tell you all you need to know (and a lot more) about regular expressions. @@ -25,13 +27,25 @@ === Links to regex resources === -http://www.regular-expressions.info/tutorial.html +These resources are not for Jakarta ORO specifically, but are helpful in understanding Regexes in general. + + * http://www.regular-expressions.info/tutorial.html + + * http://tlc.perlarchive.com/articles/perl/pm0001_perlretut.shtml + + * http://www.visibone.com/regular-expressions/ - quick reference + + * http://www.regexlib.com/ - regular expressions library + +=== Links to Regex Testers === + +Note that these testers use engines which may work slightly differently from the Jakarta-ORO (the one currently used by JMeter). However, a lot of regexes will work the same in all the tools. -http://tlc.perlarchive.com/articles/perl/pm0001_perlretut.shtml + * http://weitz.de/regex-coach/ - easy to use regex tester (Linux and Windows, Perl-like expressions) -'''For an extremely useful Regex tester, see http://weitz.de/regex-coach/''' + * http://jregexptester.sourceforge.net/index.html - Java Swing (requires JVM 1.4 or above, presumably uses java.util.regex) -http://www.visibone.com/regular-expressions/ - quick reference + * http://royo.is-a-geek.com/iserializable/regulator/ - the Regulator (Windows only, .NET regexes) === Examples === --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
