Re: casting Bangla characters to NUMERIC

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Bob Jolliffe <bobjolliffe(at)gmail(dot)com>
Cc: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: casting Bangla characters to NUMERIC
Date: 2019-11-25 16:27:40
Message-ID: 3579.1574699260@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Bob Jolliffe <bobjolliffe(at)gmail(dot)com> writes:
> I have an interesting problem. I have a string field in a table which
> (sometimes) is expected to contain numeric values ie. a cast of the
> field to INTEGER is supposed to succeed.

> My issue is that the application is running in Bangladesh, and
> sometimes the users have entered values using Bangla characters. eg.
> "৮" rather than "8". (Note that this shouldnt have been possible to
> enter in the first place, but we can ignore that for now. They are
> there, I have to somehow deal with it.)

> Is there a way with LOCALE settings to get this cast to work
> correctly?

Doubt it :-(. ISTM it's certainly outside the charter of int4in to
do that. Ideally to_number() would handle it, but I don't think it
does at the moment. Probably your best bet is to translate those
characters to regular ASCII digits using replace(), then cast.
It'd be a bit tedious, but fortunately there are only 10 cases
to consider, and you could wrap that up in a function.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Bob Jolliffe 2019-11-25 16:38:42 Re: casting Bangla characters to NUMERIC
Previous Message Bob Jolliffe 2019-11-25 16:02:32 casting Bangla characters to NUMERIC