|
1 | | -<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.478 2009/05/03 21:10:27 tgl Exp $ --> |
| 1 | +<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.479 2009/05/13 21:53:41 tgl Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter id="functions"> |
4 | 4 | <title>Functions and Operators</title> |
@@ -3445,7 +3445,7 @@ SELECT regexp_matches('foobarbequebaz', 'barbeque'); |
3445 | 3445 | Some examples: |
3446 | 3446 | <programlisting> |
3447 | 3447 |
|
3448 | | -SELECT foo FROM regexp_split_to_table('the quick brown fox jumped over the lazy dog', E'\\\s+') AS foo; |
| 3448 | +SELECT foo FROM regexp_split_to_table('the quick brown fox jumped over the lazy dog', E'\\s+') AS foo; |
3449 | 3449 | foo |
3450 | 3450 | -------- |
3451 | 3451 | the |
|