mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
remove un-needed text and change <titleabbrev>
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@162876 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
f8a9eed409
commit
0e4e45fb2c
1 changed files with 8 additions and 33 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue