summaryrefslogtreecommitdiffstats
path: root/docs/manual/tasks/propertyregex.html
diff options
context:
space:
mode:
authormattinger <[email protected]>2006-07-06 21:53:00 +0000
committermattinger <[email protected]>2006-07-06 21:53:00 +0000
commit1159111b7a71b72eb04326df33211e1733f7e742 (patch)
treef0a80c384f633e521649654ab78e6239cf5e0d6f /docs/manual/tasks/propertyregex.html
Initial addition into subversion with build script changes
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@5 32d7a393-a5a9-423c-abd3-5d954feb1f2f
Diffstat (limited to 'docs/manual/tasks/propertyregex.html')
-rw-r--r--docs/manual/tasks/propertyregex.html133
1 files changed, 133 insertions, 0 deletions
diff --git a/docs/manual/tasks/propertyregex.html b/docs/manual/tasks/propertyregex.html
new file mode 100644
index 0000000..33b855e
--- /dev/null
+++ b/docs/manual/tasks/propertyregex.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+ <head>
+ <title>Ant-contrib Tasks: PropertyRegex</title>
+ </head>
+
+ <body>
+ <h1>PropertyRegex</h1>
+
+ <p>Performs regular expression operations on an input string, and sets
+ the results to a property. There are two different operations that
+ can be performed:
+ <ol type="1">
+ <li>Replacement - The matched regular expression is replaced with
+ a substitition pattern</li>
+ <li>Selection - Groupings within the regular expression are selected
+ via a selection expression.
+ </ol>
+ </p>
+
+ <h2>Parameters</h2>
+ <table border="1" cellpadding="2" cellspacing="0">
+ <tr>
+ <th>Attribute</th>
+ <th>Description</th>
+ <th>Required</th>
+ </tr>
+ <tr>
+ <td valign="top">property</td>
+ <td valign="top">The name of the property to set.</td>
+ <td align="center" valign="top">Yes.</td>
+ </tr>
+ <tr>
+ <td valign="top">override</td>
+ <td valign="top">If the property is already set, should we change it's value.
+ Can be <code>true</code> or <code>false</code></td>
+ <td align="center" valign="top">No. Defaults to <code>false</code></td>
+ </tr>
+ <tr>
+ <td valign="top">input</td>
+ <td valign="top">The input string to be processed</td>
+ <td align="center" valign="top">Yes.</td>
+ </tr>
+ </tr>
+ <tr>
+ <td valign="top">regexp</td>
+ <td valign="top">The regular expression which is matched in
+ the input string.</td>
+ <td align="center" valign="top">Yes (can be specified in a
+ <code>&lt;regexp&gt;</code> subelement).
+ </td>
+ </tr>
+ <tr>
+ <td valign="top">select</td>
+ <td valign="top">A pattern which indicates what selection pattern you want
+ in the returned value. This uses the substitution pattern
+ syntax to indicate where to insert groupings created as a result
+ of the regular expression match.</td>
+ <td align="center" valign="top">Yes, unless a replace is specified</td>
+ </tr>
+ <tr>
+ <td valign="top">replace</td>
+ <td valign="top">A regular expression substitition pattern, which will be used
+ to replace the given regular expression in the input string.</td>
+ <td align="center" valign="top">Yes, unless a select is specified</td>
+ </tr>
+ <tr>
+ <td valign="top">casesensitive</td>
+ <td valign="top">Should the match be case sensitive</td>
+ <td align="center" valign="top">No. default is &quot;true&quot;.</td>
+ </tr>
+ <tr>
+ <td valign="top">global</td>
+ <td valign="top">Should a replacement operation be performed on the entire
+ string, rather than just the first occurance</td>
+ <td align="center" valign="top">No. default is <code>false</code>.</td>
+ </tr>
+ <tr>
+ <td valign="top">defaultValue</td>
+ <td valign="top">The value to set the output property to, if the
+ input string does not match the specific regular expression.</td>
+ <td align="center" valign="top">No.</td>
+ </table>
+
+ <h2>Select expressions</h2>
+
+ Expressions are selected in a the same syntax as a regular expression
+ substitution pattern.
+
+ <ul type="o">
+ <li><code>\0</code> indicates the entire property name (default).
+ <li><code>\1</code> indicates the first grouping
+ <li><code>\2</code> indicates the second grouping
+ <li>etc...
+ </ul>
+
+ <h2>Replacement</h2>
+ It is important to note that when doing a "replace" operation,
+ if the input string does not match the regular expression, then
+ the property is not set. You can change this behavior by supplying
+ the "defaultValue" attribute. This attribute should contain the value
+ to set the property to in this case.
+
+ <h2>Example</h2>
+
+ <pre>
+ <code>
+ &lt;propertyregex property="pack.name"
+ input="package.ABC.name"
+ regexp="package\.([^\.]*)\.name"
+ select="\1"
+ casesensitive="false" /&gt;
+ </code>
+ yields <code>ABC</code>
+ </pre>
+
+ <pre>
+ <code>
+ &lt;propertyregex property="pack.name"
+ input="package.ABC.name"
+ regexp="(package)\.[^\.]*\.(name)"
+ replace="\1.DEF.\2"
+ casesensitive="false" /&gt;
+ </code>
+ yields <code>package.DEF.name</code>
+ </pre>
+
+ <hr>
+ <p align="center">Copyright &copy; 2003 Ant-Contrib Project. All
+ rights Reserved.</p>
+
+ </body>
+</html>