Index: func.sgml =================================================================== RCS file: /projects/cvsroot/pgsql-server/doc/src/sgml/func.sgml,v retrieving revision 1.180 diff -2 -c -r1.180 func.sgml *** func.sgml 29 Nov 2003 19:51:37 -0000 1.180 --- func.sgml 7 Dec 2003 01:46:46 -0000 *************** *** 2634,2638 **** regular expression is allowed to match anywhere within a string, unless the regular expression is explicitly anchored to the beginning or ! end of the string. --- 2634,2640 ---- regular expression is allowed to match anywhere within a string, unless the regular expression is explicitly anchored to the beginning or ! end of the string. The last example includes a double backslash, ! which is usually required for using ARE shorthand . *************** *** 2644,2647 **** --- 2646,2650 ---- 'abc' ~ '(b|d)' true 'abc' ~ '^(b|c)' false + '123' ~ '^\\d{3}' true