Here you can find the source of capitalize(String s)
Parameter | Description |
---|---|
s | The string to manipulate |
public static String capitalize(String s)
//package com.java2s; public class Main { /**/*from w ww .j a va 2 s. c o m*/ * Capitalizes the first letter in the string s * @param s The string to manipulate * @return A string with the first letter capitalized */ public static String capitalize(String s) { return Character.toUpperCase(s.charAt(0)) + s.substring(1); } }