summaryrefslogtreecommitdiff
path: root/htroot/Help.html
diff options
context:
space:
mode:
authorrramthun <rramthun@6c8d7289-2bf4-0310-a012-ef5d649a1542>2005-08-13 10:21:22 +0000
committerrramthun <rramthun@6c8d7289-2bf4-0310-a012-ef5d649a1542>2005-08-13 10:21:22 +0000
commitda81dcd66a58318122d3c3c975b4fca4ebc903f5 (patch)
tree9294eec4527ec39ccd0bd38899dba03be0ceeb2c /htroot/Help.html
parent98b028038c0f6324c9ff95969c4500ab6faf77a3 (diff)
Corrected regex-tutorial...
Wenn noch was falsch ist, einfach korrigieren. git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@528 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/Help.html')
-rw-r--r--htroot/Help.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/htroot/Help.html b/htroot/Help.html
index 56a6b982c..4bc0e5470 100644
--- a/htroot/Help.html
+++ b/htroot/Help.html
@@ -78,12 +78,13 @@ Here ist a short overview about the functions, which should fir for most cases:<
<table>
<tr><td>.</td><td>: arbitrary character</td></tr>
<tr><td>x</td><td>: character x</td></tr>
-<tr><td>^x</td><td>: not x</td></tr>
+<tr><td>[^x]</td><td>: not x</td></tr>
<tr><td>x*</td><td>: 0 or more times x</td></tr>
<tr><td>x?</td><td>: 0 or 1 time x</td></tr>
<tr><td>x+</td><td>: 1 or more times x</td></tr>
<tr><td>xy</td><td>: concatenation of x and y</td></tr>
<tr><td>x|y</td><td>: x or y</td></tr>
+<tr><td>(foo|bar)</td><td>: String "foo" or string "bar"</td></tr>
<tr><td>[abc]</td><td>: a or b or c (same as a|b|c)</td></tr>
<tr><td>[a-c]</td><td>: a or b or c (same as above)</td></tr>
<tr><td>x{n}</td><td>: exactly n appearances of x</td></tr>