Java String Title Case titleCase(String input)

Here you can find the source of titleCase(String input)

Description

title Case

License

Open Source License

Declaration

public static String titleCase(String input) 

Method Source Code

//package com.java2s;

public class Main {
    public static String titleCase(String input) {

        return input.substring(0, 1).toUpperCase() + input.substring(1);
    }/*from  ww  w .j  a v a2  s.co  m*/
}

Related

  1. titleCase(final String input)
  2. titleCase(final String s)
  3. titleCase(final String text)
  4. titleCase(String in)
  5. titleCase(String name)
  6. titleCase(String raw)
  7. titleCase(String realName)
  8. titleCase(String s)