From: Gary Stainburn <[EMAIL PROTECTED]>
> I've got to tidy some data, including converting case.  I need to
> convert
> 
> ANOTHER COMPANY NAME LTD      **
> 
> to
> 
> Another Company Name Ltd      **
> 
> while retaining spaces.

$text =~ s/(\w+)/\L\u$1/g;$y

Jenda
===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to