Here you can find the source of capitalize(String value)
Parameter | Description |
---|---|
value | the value |
public static String capitalize(String value)
//package com.java2s; public class Main { /**/*from w ww . j a va 2 s . c o m*/ * Capitalize. * * @param value the value * @return the string */ public static String capitalize(String value) { if (value == null) { return value; } return value.substring(0, 1).toUpperCase() + value.substring(1); } }