up vote 6 down vote favorite
share [g+] share [fb]

I have fname and lname in my database, and a name could be stored as JOHN DOE or john DOE or JoHN dOE, but ultimately I want to display it as John Doe

fname being John and lname being Doe

link|improve this question

feedback

7 Answers

up vote 13 down vote accepted

seeing it is tagged PHP:
either

string ucfirst ( string $str );

to uppercase first letter of the first word

or

string ucwords ( string $str );

to uppercase the first letter of every word

you might want to use those in combination with

string strtolower ( string $str );

to normalize all names to lower case first.

link|improve this answer
feedback

Be aware that there are other capitalisation formats, such as John McDoe, John D'Oe, John de O, and John van den Doe.

link|improve this answer
Also N'Gomo Doe. – DJClayworth Oct 8 '08 at 13:19
That's a good one! – harriyott Oct 8 '08 at 13:24
Oooh! And John-Joe Doe – harriyott Oct 8 '08 at 13:25
you also have variants like John McDoe vs John MacDoe – ShoeLace Oct 8 '08 at 13:33
Being aware of the different capitalization formats is a great point, but you didn't offer up any suggestions to cope? – Scott Saad Oct 8 '08 at 14:52
show 3 more comments
feedback

I'm not sure where and how you want to display it, but if it's on a web-page you might try simply altering the display using CSS. Try adding:

text-transform:capitalize;

to the relevant rule, like this:

.name { text-transform:capitalize;}

if you put the name in a div or span with class="name". Of course, this will not in any way alter the database entry, but I wasn't clear which was preferable.

link|improve this answer
Dugg, brilliant suggestion which doesn't effect the actual data. – questzen Oct 9 '08 at 11:10
feedback

An example from php.net:

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!

Bear in mind the notes about the locales though...

link|improve this answer
feedback

Combining PHP shorthand functions strtolower and ucwords solves your problem:

function ucname($f, $l)
{
    return ucwords(strtolower($f." ".$l));
}
echo ucname($fname, $lname);

On a side note, keep in mind that you can do that sort of data beautification at many different stages:

  1. before insertion, in your application
  2. during insertion, with string functions in the SQL insert/update query
  3. during extraction, with string functions in the SQL select query
  4. after extraction, in your application
link|improve this answer
feedback

For simple names, this will work. Beware of special cases (like "Ronald McDonald" in the below example).

In SQL Server:

SELECT  --step 2: combine broken parts into a final name
  NAME_PARTS.FNAME_INITIAL + NAME_PARTS.REST_OF_FNAME AS FNAME
 ,NAME_PARTS.LNAME_INITIAL + NAME_PARTS.REST_OF_LNAME AS LNAME
FROM
  (     --step 1: break name into 1st letter and "everything else"
  SELECT
    UPPER(SUBSTRING(TEST.FNAME,1,1)) AS FNAME_INITIAL
   ,UPPER(SUBSTRING(TEST.LNAME,1,1)) AS LNAME_INITIAL
   ,LOWER(SUBSTRING(TEST.FNAME,2,LEN(TEST.FNAME))) AS REST_OF_FNAME
   ,LOWER(SUBSTRING(TEST.LNAME,2,LEN(TEST.LNAME))) AS REST_OF_LNAME
  FROM
    (   --step 0: generate some test data
          SELECT 'john' AS FNAME, 'doe' as LNAME
    UNION SELECT 'SUZY', 'SMITH'
    UNION SELECT 'bIlLy', 'BOb'
    UNION SELECT 'RoNALD', 'McDonald'
    UNION SELECT 'Edward', NULL
    UNION SELECT NULL, 'Jones'
    ) TEST
  ) NAME_PARTS

In Oracle

SELECT  --step 2: combine broken parts into a final name
  NAME_PARTS.FNAME_INITIAL || NAME_PARTS.REST_OF_FNAME AS FNAME
 ,NAME_PARTS.LNAME_INITIAL || NAME_PARTS.REST_OF_LNAME AS LNAME
FROM
  (     --step 1: break name into 1st letter and "everything else"
  SELECT
    UPPER(SUBSTR(TEST.FNAME,1,1)) AS FNAME_INITIAL
   ,UPPER(SUBSTR(TEST.LNAME,1,1)) AS LNAME_INITIAL
   ,LOWER(SUBSTR(TEST.FNAME,2,LENGTH(TEST.FNAME))) AS REST_OF_FNAME
   ,LOWER(SUBSTR(TEST.LNAME,2,LENGTH(TEST.LNAME))) AS REST_OF_LNAME
  FROM
    (   --step 0: generate some test data
          SELECT 'john' AS FNAME, 'doe' as LNAME FROM DUAL
    UNION SELECT 'SUZY', 'SMITH' FROM DUAL
    UNION SELECT 'bIlLy', 'BOb' FROM DUAL
    UNION SELECT 'RoNALD', 'McDonald' FROM DUAL
    UNION SELECT 'Edward', NULL FROM DUAL
    UNION SELECT NULL, 'Jones' FROM DUAL
    ) TEST
  ) NAME_PARTS
link|improve this answer
feedback

Change the names to lower and then add ('A' - 'a') to the first letter of fname & lname.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.