On Fri, Jul 19, 2002 at 02:47:43PM +0100,
Oliver Elphick <olly(at)lfix(dot)co(dot)uk> wrote
a message of 25 lines which said:
> CHECK (phone ~ '^\\+33 [0-9]( [0-9]{2}){4}$')
>
> That's only good for French numbers, since only France uses that
> grouping of digits for phone numbers.
OK, let's check:
CHECK (phone ~ '^\\+[0-9]+[ 0-9]+$')
which is, I believe, international (although the above regexp does not
prevent strange things like two consecutive spaces).