|
1 |
| -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.55 2001/03/15 01:07:51 tgl Exp $ --> |
| 1 | +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.56 2001/03/25 18:14:31 tgl Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter id="functions">
|
4 | 4 | <title>Functions and Operators</title>
|
|
1205 | 1205 | expression), an empty set of <literal>()</literal> (matching the
|
1206 | 1206 | null string), a <firstterm>bracket expression</firstterm> (see
|
1207 | 1207 | below), <literal>.</literal> (matching any single character),
|
1208 |
| - <literal>^</literal> (matching the null string at the beginning of |
1209 |
| -a line), <literal>$</literal> (matching the null string at the end |
1210 |
| - ofa line), a <literal>\</literal> followed by one of the |
| 1208 | + <literal>^</literal> (matching the null string at the beginning of the |
| 1209 | +input string), <literal>$</literal> (matching the null string at the end |
| 1210 | + ofthe input string), a <literal>\</literal> followed by one of the |
1211 | 1211 | characters <literal>^.[$()|*+?{\</literal> (matching that
|
1212 | 1212 | character taken as an ordinary character), a <literal>\</literal>
|
1213 | 1213 | followed by any other character (matching that character taken as
|
|