Java String Sentence Case toSentenceCase(String string)

Here you can find the source of toSentenceCase(String string)

Description

to Sentence Case

License

Open Source License

Declaration

public static String toSentenceCase(String string) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010 Robert "Unlogic" Olofsson (unlogic@unlogic.se).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v3
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl-3.0-standalone.html
 ******************************************************************************/

public class Main {
    public static String toSentenceCase(String string) {

        return string.substring(0, 1).toUpperCase() + string.toLowerCase().substring(1);
    }//from ww w .  ja v a  2  s .  c o  m

    public static String substring(String string, int maxChars, String suffix) {

        if (string.length() > maxChars) {
            return string.substring(0, maxChars - 1) + suffix;
        }

        return string;
    }
}

Related

  1. toSentenceCase(final String s)
  2. toSentenceCase(String inputString)
  3. toSentenceCase(String original)
  4. toSentenceCase(String s, char endOfLineSym)
  5. toSentenceCase(String str)