Re: Culturally aware initcap

From: Raymond O'Donnell <rod(at)iol(dot)ie>
To: Peter Geoghegan <peter(dot)geoghegan86(at)gmail(dot)com>
Cc: iepug(at)postgresql(dot)org
Subject: Re: Culturally aware initcap
Date: 2010-04-19 23:11:25
Message-ID: 4BCCE31D.70705@iol.ie
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: iepug

On 20/04/2010 00:06, Peter Geoghegan wrote:
> I wrote this little utility function that someone might find useful:
>
> CREATE OR REPLACE FUNCTION cul_initcap(input_val text) RETURNS text AS
> $function_body$
> -- culturally aware initcap, written by Peter Geoghegan ("sternocera")
> -- use this in place of initcap, and strings with possessive
> apostrophes are correctly initcap'd
> -- (e.g. "PETER'S string" becomes "Peter's String", not "Peter'S String")
> -- It still initcaps Irish names like O'Shaughnessy correctly
> SELECT regexp_replace(initcap($1), $$'S([^[:upper:][:lower:]]|$)$$,
> $$'s\1$$, 'g');
>
> $function_body$
> LANGUAGE 'sql' IMMUTABLE;
>
> I'm going to put it on the wiki, because it's a problem that's come up
> a good few times on IRC, and it ought to have a template solution.

Nice one Peter.

...Now what about Mc, Mac, Ní, Nic, Uí, etc etc etc? :-D

Actually, I had to do something similar recently in PHP using the Zend
framework; I did it as a filter on the input field of the relevant form.

Ray.

--
Raymond O'Donnell :: Galway :: Ireland
rod(at)iol(dot)ie

In response to

Responses

Browse iepug by date

  From Date Subject
Next Message Peter Geoghegan 2010-04-19 23:27:48 Re: Culturally aware initcap
Previous Message Peter Geoghegan 2010-04-19 23:06:21 Culturally aware initcap