Skip to content

Instantly share code, notes, and snippets.

@desaiuditd
Forked from jimjam88/ucfirst.java
Created February 16, 2016 21:26
Show Gist options
  • Save desaiuditd/b3d7a6b6d27215dd4003 to your computer and use it in GitHub Desktop.
Save desaiuditd/b3d7a6b6d27215dd4003 to your computer and use it in GitHub Desktop.
Java mimic of PHP's ucfirst function
/**
* Mimics PHP's ucfirst function.
*
* @param subject The string to be ucfirst'd
* @return The subject string with an uppercased first character
*/
final public static String ucfirst(String subject)
{
return Character.toUpperCase(subject.charAt(0)) + subject.substring(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment