Re: trim(both) problem? - Mailing list pgsql-sql

From Tom Lane
Subject Re: trim(both) problem?
Date
Msg-id 751.1209158787@sss.pgh.pa.us
Whole thread Raw
In response to Re: trim(both) problem?  ("Fernando Hevia" <fhevia@ip-tel.com.ar>)
Responses Re: trim(both) problem?  (Emi Lu <emilu@encs.concordia.ca>)
List pgsql-sql
"Fernando Hevia" <fhevia@ip-tel.com.ar> writes:
>> Trim doesn't do what you think it does. The '<BR/>' in the 
>> above is not a string to remove it is a list of characters to 
>> remove.  Thus, the R is removed as it matches a character given.

> You could probably use instead:

> select replace('<BR/>ROI Engineering Inc.', '<BR/>', '')

That would zap occurrences in the middle of the string, though.
regexp_replace would be better since it'd allow anchoring the
pattern, eg

select regexp_replace('<BR/>ROI Engineering Inc.', '^<BR/>', '');
select regexp_replace('ROI Engineering Inc.<BR/>', '<BR/>$', '');
        regards, tom lane


pgsql-sql by date:

Previous
From: "Fernando Hevia"
Date:
Subject: Re: trim(both) problem?
Next
From: chester c young
Date:
Subject: Re: trim(both) problem?