Re: More stupid questions: prettyprinting of ints??

Поиск
Список
Период
Сортировка
От Bruno Boettcher
Тема Re: More stupid questions: prettyprinting of ints??
Дата
Msg-id 20001120160826.B25191@erm1.u-strasbg.fr
обсуждение исходный текст
Ответ на More stupid questions: prettyprinting of ints??  (Bruno Boettcher <bboett@erm1.u-strasbg.fr>)
Список pgsql-sql
yeah forgot another thing....
i want also to write a SQL trigger to parse incoming fields for
preprocessing before DB insertion....

in perl i would do a thing like that:

$format = "9999.999.999,99"; #took out of DB...
#inserting a number into the db....
$theval =~ s/\.//g;
if($theval =~/\S+,\d{2}/)
{ $theval =~ s/,//g; $theval *= 100;
} 
#extracting a number from the db....
$f= $#format;
$i= $#theval;
$res = "";
while($i>=0)
{ if($format[$f] neq "9") {   $res = $format[$f].$res     $f--; }#if($format[$f] neq "9") $res = $theval[$i].$res ;
$i--;$f--;
 
}#while($i>=0)

any chance i could this get out of the frontend into the DB? (as sayd
want to write more frontends so the less is in the frontend and the more
in the DB...)

-- 
ciao bboett
==============================================================
bboett@earthling.net
http://inforezo.u-strasbg.fr/~bboett http://erm1.u-strasbg.fr/~bboett
===============================================================
the total amount of intelligence on earth is constant.
human population is growing....


В списке pgsql-sql по дате отправления:

Предыдущее
От: Bruno Boettcher
Дата:
Сообщение: More stupid questions: prettyprinting of ints??
Следующее
От: Bruno Boettcher
Дата:
Сообщение: numeric conversions?