1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- Content Stylesheet for Site -->
<!-- start the processing -->
<!-- ====================================================================== -->
<!-- Main Page Section -->
<!-- ====================================================================== -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="author" value="Jon S. Stevens">
<meta name="email" value="jon@latchkey.com">
<title>Jakarta Regexp - Regexp</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#525D76">
<table border="0" width="100%" cellspacing="0">
<!-- TOP IMAGE -->
<tr>
<td colspan="2">
<a href="http://jakarta.apache.org"><img src="http://jakarta.apache.org/images/jakarta-logo.gif" align="left" border="0"/></a>
</td>
</tr>
</table>
<table border="0" width="100%" cellspacing="4">
<tr><td colspan="2">
<hr noshade="" size="1"/>
</td></tr>
<tr>
<!-- LEFT SIDE NAVIGATION -->
<td valign="top" nowrap="true">
<strong>Regexp</strong>
<ul>
<li> <a href="./index.html">Front Page</a>
</li>
<li> <a href="./changes.html">Changes</a>
</li>
</ul>
<strong>Download</strong>
<ul>
<li> <a href="http://jakarta.apache.org/site/binindex.html">Binaries</a>
</li>
</ul>
<strong>Get Involved</strong>
<ul>
<li> <a href="http://jakarta.apache.org/site/getinvolved.html">Overview</a>
</li>
<li> <a href="http://jakarta.apache.org/site/cvsindex.html">CVS Repositories</a>
</li>
<li> <a href="http://jakarta.apache.org/site/mail.html">Mailing Lists</a>
</li>
</ul>
<strong>Related Projects</strong>
<ul>
<li> <a href="http://jakarta.apache.org/site/../oro/index.html">ORO</a>
</li>
</ul>
</td>
<td align="left" valign="top">
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#525D76">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>Regexp</strong>
</font>
</td></tr>
<tr><td>
<blockquote>
<p>
Regexp is a 100% Pure Java Regular Expression package that was graciously
donated to the Apache Software Foundation by Jonathan Locke. He originally wrote
this software back in 1996 and it has stood up quite well to the test of time.
It includes complete Javadoc documentation as well as a simple Applet for visual
debugging and testing suite for compatibility.
</p>
<p>
This package is intended to be an answer to a question we commonly hear in the
Java world:
<br />
<strong>"Why isn't there a decent regular expression package available for
Java under a BSD-Style (ie: Apache) license?"</strong>
</p>
<p>
You can <a href="../site/binindex.html">download</a> builds.
</p>
<p>
You can view the list of
<a href="./changes.html">changes</a> between revisions.
</p>
<p>
The Javadoc is <a href="http://jakarta.apache.org/regexp/apidocs/">available online</a>.
It is also included in the distribution download.
</p>
<p>
An online <a href="http://jakarta.apache.org/jyve-faq/Turbine/screen/DisplayTopics/action/SetAll/project_id/2/faq_id/27">FAQ</a>
is available for commonly asked questions like, "What is a regular
expression?", "Why did you do this? There are already other Java
regexp packages available!", etc.
</p>
<p>
If you would like to get involved with this project in one way or another
(Mailing lists, CVS, Contributions), please see the <a href="../site/getinvolved.html">Getting Involved</a> section of the Jakarta Website.
</p>
<h3><a href="../site/whoweare.html">Contributors</a></h3>
<ul>
<li>Jonathan Locke wrote the original code.</li>
<li>James Davidson for making the contact with Jonathan and asking him to release his
source code.</li>
<li>Jon S. Stevens is responsible for re-packaging it and preparing it
for release.</li>
<li>Craig McClanahan is responsible for setting up the CVS and mailing lists.</li>
<li><a href="mailto:ales AT netbeans.com">Ales Novak</a> has contributed
bug fixes and feature enhancements.</li>
<li>Michael McCallum contributed a patch to add clustering support.</li>
</ul>
</blockquote>
</td></tr>
</table>
</td>
</tr>
<!-- FOOTER -->
<tr><td colspan="2">
<hr noshade="" size="1"/>
</td></tr>
<tr><td colspan="2">
<div align="center"><font color="#525D76" size="-1"><em>
Copyright © 1999-2001, Apache Software Foundation
</em></font></div>
</td></tr>
</table>
</body>
</html>
<!-- end the processing -->
|