Here you can find the source of capitalizeFirstLetter(String word)
Parameter | Description |
---|---|
word | a parameter |
public static String capitalizeFirstLetter(String word)
//package com.java2s; //License from project: Open Source License public class Main { /**//from w w w . jav a 2 s .c o m * @param word * @return */ public static String capitalizeFirstLetter(String word) { if (word == null || word.isEmpty() || !Character.isLowerCase(word.charAt(0))) return word; return Character.toUpperCase(word.charAt(0)) + word.substring(1); } }