Update der Doku fuer 3.6.4 + LWO
... aus den Driversourcen 3.6.4 + LWO
Change-Id: I9226bb373436d5b05828f89c7da26df39aa45af7
diff --git a/doc/efun/regexplode b/doc/efun/regexplode
index ca67db8..17970bc 100644
--- a/doc/efun/regexplode
+++ b/doc/efun/regexplode
@@ -1,30 +1,13 @@
SYNOPSIS
- #include <regexp.h>
-
string * regexplode(string text, string pattern)
- string * regexplode(string text, string pattern, int opt)
-DESCRIPTION
- This function is similar to explode but accepts a regular
- expression <pattern> as delimiter (interpreted according to <opt>
- if given).
+BESCHREIBUNG
+ regexplode() verhaelt sich aehnlich wie explode(), akzeptiert aber
+ auch regulaere Ausdruecke als Trennzeichen. Im Ergebnisarray ist
+ jedes zweite Element ein Trennzeichen.
- If flag RE_OMIT_DELIM is not set in <opt>, then every second element
- in the result vector will be the text that matched the delimiter.
- If the flag is set, then the result vector will contain only
- the text between the delimiters.
+GESCHICHTE
+ Eingefuehrt in 3.2@61.
-EXAMPLES
- regexplode("abcdef", "cde") -> ({ "ab", "cde", "f" })
- regexplode("abcdef", "cde", RE_OMIT_DELIM) -> ({ "ab", "f" })
-
-HISTORY
- Introduced in 3.2@61.
- LDMud 3.3 added the optional <opt> argument and the RE_OMIT_DELIM
- flag.
- Since 3.5.0 a error is raised if RE_PCRE is specified in <opt>, but
- the driver lacks PCRE support.
-
-SEE ALSO
- explode(E), regexp(E), regmatch(E), regreplace(E),
- regexp_package(E), regexp(C)
+SIEHE AUCH
+ explode(E), regexp(E), regreplace(E)