dave Wed Aug 11 16:15:30 2004 EDT
Modified files:
/phpdoc/en/reference/pcre pattern.syntax.xml
Log:
- Add < and fix assertion. Fixes #29621.
http://cvs.php.net/diff.php/phpdoc/en/reference/pcre/pattern.syntax.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/pcre/pattern.syntax.xml
diff -u phpdoc/en/reference/pcre/pattern.syntax.xml:1.3
phpdoc/en/reference/pcre/pattern.syntax.xml:1.4
--- phpdoc/en/reference/pcre/pattern.syntax.xml:1.3 Sat Aug 7 11:07:57 2004
+++ phpdoc/en/reference/pcre/pattern.syntax.xml Wed Aug 11 16:15:29 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/pcre.xml, last change in rev 1.2 -->
<refentry id="reference.pcre.pattern.syntax">
<refnamediv>
@@ -1456,7 +1456,7 @@
matches an occurrence of "baz" that is preceded by "bar"
which in turn is not preceded by "foo", while
- <literal>(?<=\d{3}(?!999)...)foo</literal>
+ <literal>(?<=\d{3}...(?<!999))foo</literal>
is another pattern which matches "foo" preceded by three
digits and any three characters that are not "999".