nlopess Thu Jul 8 11:42:48 2004 EDT
Modified files:
/phpdoc/en/reference/regex reference.xml
Log:
remove un-needed text and change <titleabbrev>
http://cvs.php.net/diff.php/phpdoc/en/reference/regex/reference.xml?r1=1.9&r2=1.10&ty=u
Index: phpdoc/en/reference/regex/reference.xml
diff -u phpdoc/en/reference/regex/reference.xml:1.9
phpdoc/en/reference/regex/reference.xml:1.10
--- phpdoc/en/reference/regex/reference.xml:1.9 Mon Dec 15 11:53:22 2003
+++ phpdoc/en/reference/regex/reference.xml Thu Jul 8 11:42:48 2004
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<reference id="ref.regex">
<title>Regular Expression Functions (POSIX Extended)</title>
- <titleabbrev>Regexps</titleabbrev>
+ <titleabbrev>POSIX Regex</titleabbrev>
<partintro>
<section id="regex.intro">
@@ -23,37 +23,12 @@
</para>
</warning>
<para>
- Regular expressions are used for complex string manipulation in
- PHP. The functions that support regular expressions are:
- <itemizedlist>
- <listitem>
- <simpara><function>ereg</function></simpara>
- </listitem>
- <listitem>
- <simpara><function>ereg_replace</function></simpara>
- </listitem>
- <listitem>
- <simpara><function>eregi</function></simpara>
- </listitem>
- <listitem>
- <simpara><function>eregi_replace</function></simpara>
- </listitem>
- <listitem>
- <simpara><function>split</function></simpara>
- </listitem>
- <listitem>
- <simpara><function>spliti</function></simpara>
- </listitem>
- </itemizedlist>
- </para>
- <para>
- These functions all take a regular expression string as their
- first argument. PHP uses the POSIX extended regular expressions
- as defined by POSIX 1003.2. For a full description of POSIX
- regular expressions see the regex man pages included in the regex
- directory in the PHP distribution. It's in manpage format, so
- you'll want to do something along the lines of <command>man
- /usr/local/src/regex/regex.7</command> in order to read it.
+ Regular expressions are used for complex string manipulation.
+ PHP uses the POSIX extended regular expressions as defined by POSIX
+ 1003.2. For a full description of POSIX regular expressions see the regex
+ man pages included in the regex directory in the PHP distribution. It's
+ in manpage format, so you'll want to do something along the lines of
+ <command>man /usr/local/src/regex/regex.7</command> in order to read it.
</para>
</section>