Search Postgresql Archives

Re: converting curly apostrophes to standard apostrophes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Aug 15, 2005 at 12:14:16PM -0700, CSN wrote:
> Is there a way to replace all curly apostrophes with
> standard apostrophes (presumably with replace(x,y,z))?
> My database is SQL_ASCII and I can't find a character
> code for curly apostrophes in ASCII here:
> http://www.lookuptables.com, but nevertheless there
> appear to be curly apostrophes in the database.

The "Extended ASCII Codes" section of that page might not match
what your system uses (it doesn't match mine).  Have you tried using
the ascii() function on the offending data?

CREATE TABLE foo (testval text);
INSERT INTO foo VALUES ('ABCDEFG');

SELECT substr(testval, 4, 1), ascii(substr(testval, 4, 1)) FROM foo;
 substr | ascii 
--------+-------
 D      |    68
(1 row)

-- 
Michael Fuhr

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux