Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I get the accessor method to return the first letter of a name to be uppercase and the rest in lowercase no matter what was entered?

public class Name
{
    private String first;
    private String last;

    /**
     * Constructor for objects of class Name
     */
    public Name(String firstName, String lastName)
    {
        first = firstName;
        last = lastName;
    }

    /**
     * @returns firstName
     */ 
    public String getFirstname()
    {
        return first;       
    }

    /**
     * @returns lastName
     */ 
    public String getLastname()
    {
        return last;  
    }

    /**
     * @returns Fullname
     */ 
    public String getFullname()
    {
        return first + last;
    }

    /**
     * @para new firstname
     */
    public void setFirstname(String firstName)
    {
        first = firstName;
    }
}
share|improve this question
9  
Don't! Some people have more than one capital letter in their names. – Carl Norum Mar 2 '10 at 1:08
1  
And I agree with Carl. In your input you should suggest capitalizing it, but you should not change it. – Ravi Wallau Mar 2 '10 at 1:15

3 Answers

 public static String capitalizeFirst(String s) {
   return Character.toUpperCase(s.charAt(0)) + s.substring(1).toLowerCase();
 }

 public String getFirstname() {
    return capitalizeFirst(first);
 }

As the name implies, capitalizeFirst capitalizes the first character of a non-empty string, and converts the rest of the string to lowercase.

share|improve this answer

Use StringUtils.capitalize from Commons Lang.

Always use the library if it is available, they probably went through all the corner cases that you would only figure out after solving bug after bug.

share|improve this answer
1  
But that doesn't ensure that the rest of the name is lower case; it just capitalizes the first and leaves the rest as they are. The OP said "and the rest in lowercase no matter what was entered" – charlie Mar 2 '10 at 1:16

This is the only way I can really think of doing it:

last.substring(0,1).toUpperCase() + last.substring(1).toLowercase()
share|improve this answer
2  
It fails on an empty string. – Ravi Wallau Mar 2 '10 at 1:14
1  
And on surrogate pairs. (This is for people with unusual names.) – Tom Hawtin - tackline Mar 2 '10 at 1:36
1  
Also fails on null (which isn't checked for in construction). – Tom Hawtin - tackline Mar 2 '10 at 1:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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