       *********************** RegExplorer 0.1.3 **********************

RegExplorer is a visual regular expression explorer, it allows for writing
regular expressions and visually see the matches, thus making regular
expression much easier to write and maintain.

RegExplorer is written by Jan Borsodi <jb@ez.no>

Requirements:
Troll Tech's Qt Library (Version 2.0 or higher)
Download at ftp://ftp.troll.no/qt/source/qt-2.01.tar.gz
or follow the links on http://www.troll.no

If you want the development documents you will need Doxygen.
Download at http://www.stack.nl/~dimitri/doxygen/download.html

Compiling:
A simple "make" should be sufficient, but if you experience problems
try to download tmake from http://www.troll.no.  Install it and do a
"tmake -o Makefile regexplorer.pro" in the src directory and then a "make".

Usage:
Simply write the regular expressions in the upper text field, the matches
are automaticly updated as you write, if you have written one or more 
sub expressions use the spin box on the right to show those matches.

When using the multiple matching you can select a sub expression as well as a
match index.

Supported special types are:
\w Alphanumerical characters([a-zA-Z0-9_])
\W Non alphanumerical characters
\d Digits
\D Non digits
\s White Spaces ([ \t\r\n\f])
\S Non white space
\n Newline
\f Form feed
\r Carriage return
\t Tab
\. The . character.
\( The ( character.
\) The ) character.

For more information on regular expressions read the man pages regex(7)
or lookup Regular Expressions in Programmming Perl.
