= Microregex = microregex is a lightweight regular expression library written in C for the Kite programming language (although it is usable for other purposes). It uses Perl syntax with some exceptions: * No (?...) support. * The following escapes do not work: * \G For more information on Perl regular expression syntax, see [http://www.perl.com/doc/manual/html/pod/perlre.html here]. == Downloading == The latest version is [http://www.kite-language.org/files/microregex-1.0b7.tar.gz 1.0b7]. == Installation == Since this package uses GNU Autoconf and Automake, installation is a simple matter of running the following: {{{ ./configure make make check make install }}} Total build time should only take a few seconds on any modern machine. For more information, please see the INSTALL file. == Documentation == Documentation is available via Doxygen. Generating it on the source files in this folder should produce viewable HTML. Documentation is also available [http://www.kite-language.org/docs/microregex-1.0b3/microregex_8h.html here]. == Getting Help == See GettingHelp.