Re: Function testing if a string is a number ?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Arnaud Lesauvage <thewild(at)freesurf(dot)fr>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Function testing if a string is a number ?
Date: 2006-02-20 15:09:46
Message-ID: 26030.1140448186@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Arnaud Lesauvage <thewild(at)freesurf(dot)fr> writes:
> I am searching for a function that would return true if a string
> is a number.
> In Access I would have written IsNumeric('mystring'), but this
> function does not exist in postgres.

Write your own using a pattern test, for instance
varchar ~ '^[0-9]+$'
See
http://www.postgresql.org/docs/8.1/static/functions-matching.html

regards, tom lane

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Arnaud Lesauvage 2006-02-20 15:14:45 Re: Function testing if a string is a number ?
Previous Message Arnaud Lesauvage 2006-02-20 14:14:51 Function testing if a string is a number ?