Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 11016

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Escape sequences</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="regexp.reference.meta.html">Meta-characters</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="regexp.reference.unicode.html">Unicode character properties</a></div>
 <div class="up"><a href="reference.pcre.pattern.syntax.html">PCRE regex syntax</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="regexp.reference.escape" class="section">
  <h2 class="title">Escape sequences</h2>
  <p class="para">
   The backslash character has several uses. Firstly, if it  is
   followed by a non-alphanumeric character, it takes away any
   special  meaning that character may have. This use of
   backslash as an escape character applies both inside and
   outside character classes.
  </p>
  <p class="para">
   For example, if you want to match a &quot;*&quot; character, you write
   &quot;\*&quot; in the pattern. This applies whether or not the
   following character would otherwise be interpreted as a
   meta-character, so it is always safe to precede a non-alphanumeric
   with &quot;\&quot; to specify that it stands for itself.  In
   particular, if you want to match a backslash, you write &quot;\\&quot;.
  </p>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
   <p class="para">
    Single and double quoted PHP <a href="language.types.string.html#language.types.string.syntax" class="link">strings</a> have special
    meaning of backslash. Thus if \ has to be matched with a regular
    expression \\, then &quot;\\\\&quot; or &#039;\\\\&#039; must be used in PHP code.
   </p>
  </p></blockquote>
  <p class="para">
   If a pattern is compiled with the
   <a href="reference.pcre.pattern.modifiers.html" class="link">PCRE_EXTENDED</a> option,
   whitespace in the pattern (other than in a character class) and
   characters between a &quot;#&quot; outside a character class and the next newline
   character are ignored. An escaping backslash can be used to include a
   whitespace or &quot;#&quot; character as part of the pattern.
  </p>
  <p class="para">
   A second use of backslash provides a way of encoding
   non-printing characters in patterns in a visible manner. There
   is no restriction on the appearance of non-printing  characters,
   apart from the binary zero that terminates a pattern,
   but when a pattern is being prepared by text editing, it is
   usually  easier to use one of the following escape sequences
   than the binary character it represents:
  </p>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em class="emphasis">\a</em></span>
     <dd>

      <span class="simpara">alarm, that is, the BEL character (hex 07)</span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\cx</em></span>
     <dd>

      <span class="simpara">&quot;control-x&quot;, where x is any character</span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\e</em></span>
     <dd>

      <span class="simpara">escape (hex 1B)</span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\f</em></span>
     <dd>

      <span class="simpara">formfeed (hex 0C)</span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\n</em></span>
     <dd>

      <span class="simpara">newline (hex 0A)</span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\p{xx}</em></span>
     <dd>

      <span class="simpara">
       a character with the xx property, see 
       <a href="regexp.reference.unicode.html" class="link">unicode properties</a> 
       for more info
      </span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\P{xx}</em></span>
     <dd>

      <span class="simpara">
       a character without the xx property, see 
       <a href="regexp.reference.unicode.html" class="link">unicode properties</a> 
       for more info
      </span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\r</em></span>
     <dd>

      <span class="simpara">carriage return (hex 0D)</span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\t</em></span>
     <dd>

      <span class="simpara">tab (hex 09)</span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\xhh</em></span>
     <dd>

      <span class="simpara">
       character with hex code hh 
      </span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\ddd</em></span>
     <dd>

      <span class="simpara">character with octal code ddd, or backreference</span>
     </dd>

    </dt>

   </dl>

  </p>
  <p class="para">
   The precise effect of &quot;<em>\cx</em>&quot; is as follows: 
   if &quot;<em>x</em>&quot; is a lower case  letter, it is converted
   to upper case. Then bit 6 of the character (hex 40) is inverted. 
   Thus &quot;<em>\cz</em>&quot; becomes  hex 1A, but
   &quot;<em>\c{</em>&quot; becomes hex 3B, while &quot;<em>\c;</em>&quot;
   becomes hex 7B.
  </p>
  <p class="para">
   After &quot;<em>\x</em>&quot;, up to two hexadecimal digits are
   read (letters can be in upper or lower case).
   In <em class="emphasis">UTF-8 mode</em>, &quot;<em>\x{...}</em>&quot; is
   allowed, where the contents of the braces is a string of hexadecimal
   digits. It is interpreted as a UTF-8 character whose code number is the
   given hexadecimal number. The original hexadecimal escape sequence,
   <em>\xhh</em>, matches a two-byte UTF-8 character if the value
   is greater than 127.
  </p>
  <p class="para">
   After &quot;<em>\0</em>&quot; up to two further octal digits are read.
   In  both cases,  if  there are fewer than two digits, just those that
   are present are used. Thus the sequence &quot;<em>\0\x\07</em>&quot; 
   specifies two binary zeros followed by a BEL character. Make sure you
   supply two digits after the initial zero if the character
   that follows is itself an octal digit.
  </p>
  <p class="para">
   The handling of a backslash followed by a digit other than 0
   is complicated. Outside a character class, PCRE reads it
   and any following digits as a decimal number. If the  number
   is  less  than  10, or if there have been at least that many
   previous capturing left parentheses in the  expression,  the
   entire  sequence is taken as a <em class="emphasis">back reference</em>. A description
   of how this works is given later, following  the  discussion
   of parenthesized subpatterns.
  </p>
  <p class="para">
   Inside a character  class,  or  if  the  decimal  number  is
   greater than 9 and there have not been that many capturing
   subpatterns, PCRE re-reads up to three octal digits following 
   the backslash, and generates a single byte from the
   least significant 8 bits of the value. Any subsequent digits
   stand for themselves.  For example:
  </p>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em class="emphasis">\040</em></span>
     <dd>
<span class="simpara">is another way of writing a space</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\40</em></span>
     <dd>

      <span class="simpara">
       is the same, provided there are fewer than 40
       previous capturing subpatterns
      </span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\7</em></span>
     <dd>
<span class="simpara">is always a back reference</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\11</em></span>
     <dd>

      <span class="simpara">
       might be a back reference, or another way of
       writing a tab
      </span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\011</em></span>
     <dd>
<span class="simpara">is always a tab</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\0113</em></span>
     <dd>
<span class="simpara">is a tab followed by the character &quot;3&quot;</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\113</em></span>
     <dd>

      <span class="simpara">
       is the character with octal code 113 (since there
       can be no more than 99 back references)
      </span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\377</em></span>
     <dd>
<span class="simpara">is a byte consisting entirely of 1 bits</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\81</em></span>
     <dd>

      <span class="simpara">
       is either a back reference, or a binary zero
       followed by the two characters &quot;8&quot; and &quot;1&quot;
      </span>
     </dd>

    </dt>

   </dl>

  </p>
  <p class="para">
   Note that octal values of 100 or greater must not be
   introduced by a leading zero, because no more than three octal
   digits are ever read.
  </p>
  <p class="para">
   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 &quot;<em>\b</em>&quot;
   is interpreted as the backspace character (hex 08). Outside a character
   class it has a different meaning (see below).
  </p>
  <p class="para">
   The third use of backslash is for specifying generic
   character types:
  </p>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em class="emphasis">\d</em></span>
     <dd>
<span class="simpara">any decimal digit</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\D</em></span>
     <dd>
<span class="simpara">any character that is not a decimal digit</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\h</em></span>
     <dd>
<span class="simpara">any horizontal whitespace character (since PHP 5.2.4)</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\H</em></span>
     <dd>
<span class="simpara">any character that is not a horizontal whitespace character (since PHP 5.2.4)</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\s</em></span>
     <dd>
<span class="simpara">any whitespace character</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\S</em></span>
     <dd>
<span class="simpara">any character that is not a whitespace character</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\v</em></span>
     <dd>
<span class="simpara">any vertical whitespace character (since PHP 5.2.4)</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\V</em></span>
     <dd>
<span class="simpara">any character that is not a vertical whitespace character (since PHP 5.2.4)</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\w</em></span>
     <dd>
<span class="simpara">any &quot;word&quot; character</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\W</em></span>
     <dd>
<span class="simpara">any &quot;non-word&quot; character</span></dd>

    </dt>

   </dl>

  </p>
  <p class="para">
   Each pair of escape sequences partitions the complete set of
   characters into two disjoint sets. Any given character
   matches one, and only one, of each pair.
  </p>
  <p class="para">
   A &quot;word&quot; character is any letter or digit or the underscore
   character,  that  is,  any  character which can be part of a
   Perl &quot;<em class="emphasis">word</em>&quot;. The definition of letters and digits is  
   controlled by PCRE&#039;s character tables, and may vary if locale-specific
   matching is taking place. For example, in the &quot;fr&quot; (French) locale, some
   character codes greater than 128 are used for accented letters,
   and these are matched by <em>\w</em>.
  </p>
  <p class="para">
   These character type sequences can appear both inside and
   outside  character classes. They each match one character of
   the appropriate type. If the current matching  point is at
   the end of the subject string, all of them fail, since there
   is no character to match.
  </p>
  <p class="para">
   The fourth use of backslash is  for  certain  simple
   assertions. An assertion specifies a condition that has to be met
   at a particular point in  a match, without consuming any
   characters from the subject string. The use of subpatterns
   for more complicated assertions is described below. The
   backslashed assertions are
  </p>
  <p class="para">
   <dl>

    <dt>

     <span class="term"><em class="emphasis">\b</em></span>
     <dd>
<span class="simpara">word boundary</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\B</em></span>
     <dd>
<span class="simpara">not a word boundary</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\A</em></span>
     <dd>
<span class="simpara">start of subject (independent of multiline mode)</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\Z</em></span>
     <dd>

      <span class="simpara">
       end of subject or newline at end (independent of
       multiline mode)
      </span>
     </dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\z</em></span>
     <dd>
<span class="simpara">end of subject (independent of multiline mode)</span></dd>

    </dt>

    <dt>

     <span class="term"><em class="emphasis">\G</em></span>
     <dd>
<span class="simpara">first matching position in subject</span></dd>

    </dt>

   </dl>

  </p>
  <p class="para">
   These assertions may not appear in  character  classes  (but
   note that &quot;<em>\b</em>&quot; has a different meaning, namely the backspace
   character, inside a character class).
  </p>
  <p class="para">
   A word boundary is a position in the subject string where
   the current character and the previous character do not both
   match <em>\w</em> or <em>\W</em> (i.e. one matches 
   <em>\w</em> and  the  other  matches
   <em>\W</em>), or the start or end of the string if the first
   or last character matches <em>\w</em>, respectively.
  </p>
  <p class="para">
   The <em>\A</em>, <em>\Z</em>, and
   <em>\z</em> assertions differ  from  the  traditional
   circumflex  and  dollar  (described below) in that they only
   ever match at the very start and end of the subject  string,
   whatever  options  are  set.  They  are  not affected by the
   <a href="reference.pcre.pattern.modifiers.html" class="link">PCRE_MULTILINE</a> or
   <a href="reference.pcre.pattern.modifiers.html" class="link">PCRE_DOLLAR_ENDONLY</a>
   options. The  difference  between <em>\Z</em> and
   <em>\z</em>  is that <em>\Z</em> matches before a
   newline that is the last character of the string as well as at the end of
   the string, whereas <em>\z</em> matches only at the end.
  </p>
  <p class="para">
   The <em>\G</em> assertion is true only when the current
   matching position is at the start point of the match, as specified by
   the <em><code class="parameter">offset</code></em> argument of
    <span class="function"><a href="function.preg-match.html" class="function">preg_match()</a></span>. It differs from <em>\A</em>
   when the value of <em><code class="parameter">offset</code></em> is non-zero.
  </p>
  
  <p class="para">
   <em>\Q</em> and <em>\E</em> can be used to ignore
   regexp metacharacters in the pattern. For example:
   <em>\w+\Q.$.\E$</em> will match one or more word characters,
   followed by literals <em>.$.</em> and anchored at the end of
   the string.
  </p>
  
  <p class="para">
   <em>\K</em> can be used to reset the match start since
   PHP 5.2.4. For example, the pattern <em>foo\Kbar</em> matches
   &quot;foobar&quot;, but reports that it has matched &quot;bar&quot;. The use of
   <em>\K</em> does not interfere with the setting of captured
   substrings. For example, when the pattern <em>(foo)\Kbar</em>
   matches &quot;foobar&quot;, the first substring is still set to &quot;foo&quot;.
  </p>
  
 </div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="regexp.reference.meta.html">Meta-characters</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="regexp.reference.unicode.html">Unicode character properties</a></div>
 <div class="up"><a href="reference.pcre.pattern.syntax.html">PCRE regex syntax</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>