Here you can find the source of capitalize(String input)
Parameter | Description |
---|---|
input | is the String to capitalize. |
public static String capitalize(String input)
//package com.java2s; //License from project: Open Source License public class Main { /**// w w w . j a v a 2 s .co m * Capitalizes the first letter of a {@link String}. * @param input is the {@link String} to capitalize. * @return the capitalized {@link String}. */ public static String capitalize(String input) { if (input == null) { throw new IllegalArgumentException("Input string cannot be null!"); } else if (input.length() < 2) { return input.toUpperCase(); } return input.substring(0, 1).toUpperCase() + input.substring(1); } }