From 2e13a4e42fb9c1d7c8ebc587a70633fc4f966bb8 Mon Sep 17 00:00:00 2001 From: Daniel Beckham Date: Wed, 30 May 2001 15:36:40 +0000 Subject: [PATCH] corrected several xml syntax errors that were causing make test to fail git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48884 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/pcre.xml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/functions/pcre.xml b/functions/pcre.xml index 8497aee4d1..5c7a70fa9a 100644 --- a/functions/pcre.xml +++ b/functions/pcre.xml @@ -860,7 +860,7 @@ $fl_array = preg_grep ("/^(\d+)?\.\d+$/", $array); expression pattern matching using the same syntax and semantics as Perl 5, with just a few differences (see below). The current implementation corresponds to Perl 5.005. - + @@ -992,6 +992,7 @@ $fl_array = preg_grep ("/^(\d+)?\.\d+$/", $array); + @@ -1014,7 +1015,7 @@ $fl_array = preg_grep ("/^(\d+)?\.\d+$/", $array); The quick brown fox matches a portion of a subject string that is identical to itself. - + Meta-caracters @@ -1184,10 +1185,10 @@ $fl_array = preg_grep ("/^(\d+)?\.\d+$/", $array); The following sections describe the use of each of the meta-characters. - + - - backslash + + backslash The backslash character has several uses. Firstly, if it is followed by a non-alphameric character, it takes away any @@ -1410,6 +1411,7 @@ $fl_array = preg_grep ("/^(\d+)?\.\d+$/", $array); + Note that octal values of 100 or greater must not be intro- @@ -1419,7 +1421,7 @@ $fl_array = preg_grep ("/^(\d+)?\.\d+$/", $array); All the sequences that define a single byte value can be used both inside and outside character classes. In addition, - inside a character class, the sequence "\b" is interpreted + inside a character class, the sequence "\b" is interpreted as the backspace character (hex 08). Outside a character class it has a different meaning (see below).