Re: is there a function which elminates spaces? - Mailing list pgsql-general

From codeWarrior
Subject Re: is there a function which elminates spaces?
Date
Msg-id djj18u$297u$2@news.hub.org
Whole thread Raw
Responses Re: is there a function which elminates spaces?  (Jeffrey Melloy <jmelloy@visualdistortion.org>)
List pgsql-general
SELECT trim(trailing ' ' from city_name) AS city_name FROM sys_cities;

You might consider reading the manual as there are a multitude of string
manipulation functions built into postgreSQL....





"Pierre Couderc" <pierre@couderc.ccNOSPAM> wrote in message
news:djidc4$2hgk$1@biggoron.nerim.net...
> In a WHERE clause, I want to to compare strings ignoring the spaces inside
> them. Is therd a function to do that? I do not find it in the
> documentation.
>
> SELECT ... WHERE (ignore_spaces(table.phone_number) ~* igore_spaces(?));
>
> would be fine but ignore_space() does not exist!
> Maybe there is a solution based on regular epxression, but I do not see
> it.




pgsql-general by date:

Previous
From: Csaba Nagy
Date:
Subject: Re: insertion becoming slow
Next
From: Johan Wehtje
Date:
Subject: Why is this function wrong