Java String Camel Case camelCase(String text)

Here you can find the source of camelCase(String text)

Description

Turns a text into camel case.

License

Apache License

Parameter

Parameter Description
text the text to turn into camel case

Return

a camel-cased version of the given text

Declaration

public static String camelCase(String text) 

Method Source Code

//package com.java2s;
/*// ww  w  .j  a  va 2 s .c om
 * Copyright 2009-2012 Aluminum project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * Turns a text into camel case. Each word (apart from the first one) will be capitalised; after that, all of the
     * words will be joined.
     *
     * @param text the text to turn into camel case
     * @return a camel-cased version of the given text
     */
    public static String camelCase(String text) {
        StringBuilder builder = new StringBuilder();

        boolean turnIntoUpperCase = false;

        for (char character : text.toCharArray()) {
            if (character == ' ') {
                turnIntoUpperCase = true;
            } else {
                builder.append(turnIntoUpperCase ? Character.toUpperCase(character) : character);

                turnIntoUpperCase = false;
            }
        }

        return builder.toString();
    }
}

Related

  1. CamelCase(String str)
  2. camelCase(String string, boolean firstUpper)
  3. camelCase(String text)
  4. camelCase(String text)
  5. camelCase(String text)
  6. camelCased(String str)
  7. camelCasedWord(String s)
  8. camelCaseWord(String word)
  9. cameliza(String str)