From da81dcd66a58318122d3c3c975b4fca4ebc903f5 Mon Sep 17 00:00:00 2001 From: rramthun Date: Sat, 13 Aug 2005 10:21:22 +0000 Subject: [PATCH] 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 --- htroot/Help.html | 3 ++- locales/de.lng | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) 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:< - + + diff --git a/locales/de.lng b/locales/de.lng index db1598a3d..1a3760437 100644 --- a/locales/de.lng +++ b/locales/de.lng @@ -168,6 +168,7 @@ not x==nicht x 1 or more times x==1 oder mehr Vorkommen von x concatenation of x and y==Verkettung von x und y x or y==x oder y +String "foo" or string "bar"==String "foo" oder String "bar" a or b or c (same as a\|b\|c)==a oder b oder c (dasselbe wie a|b|c) a or b or c (same as above)==a oder b oder c (dasselbe wie oben) exactly n appearances of x==genau n Vorkommen von x
.: arbitrary character
x: character x
^x: not x
[^x]: not x
x*: 0 or more times x
x?: 0 or 1 time x
x+: 1 or more times x
xy: concatenation of x and y
x|y: x or y
(foo|bar): String "foo" or string "bar"
[abc]: a or b or c (same as a|b|c)
[a-c]: a or b or c (same as above)
x{n}: exactly n appearances of x