Here you can find the source of capitalizeFirstLetter(String s)
Parameter | Description |
---|---|
s | the string to capitalize |
public static String capitalizeFirstLetter(String s)
//package com.java2s; //License from project: Open Source License public class Main { /**//from w ww. j av a 2s . c om * Capitalizes the first letter of the given String. * * @param s the string to capitalize * @return String with a capitalized first letter */ public static String capitalizeFirstLetter(String s) { char[] chars = s.toCharArray(); chars[0] = Character.toUpperCase(chars[0]); return new String(chars); } }