Program Discussion :: Strings
8. Write a program to Convert a String to Camel Case.
Hint: In camel case, we capitalise the first letter of each word.
8. Write a program to Convert a String to Camel Case.
Hint: In camel case, we capitalise the first letter of each word.
Answer:
<!DOCTYPE html>
<html>
<body>
<?php
function Camel() {
// input string
$arr ="what is your name";
echo "Input string is :" . $arr."<br/>";
// function to convert in Camel notation
$camel =ucwords ($arr) ;
// printing string in Camel Notation
echo $camel;
}
// function calling
Camel() ;
?>
</body>
</html>
Asked In :: IBM
Language:

Rai
22 Apr, 2017 11:18 AM
import java.util.*;
public class Camel{
public static void main(String ar[]){
Scanner sc=new Scanner(System.in);
String st=sc.nextLine();
String result="";
String remaining="";
String[] str=st.split(" ");
for(String s: str){
result=s.substring(0,1).toUpperCase();
System.out.print(result);
remaining=s.substring(1,s.length()).toLowerCase();
System.out.print(remaining +" ");
}
}
}
Language:

Rai
22 Apr, 2017 11:18 AM
import java.util.Scanner;
public class CaseManipulation {
public static String toCamelCase(String inputString) {
String result = "";
if (inputString.length() == 0) {
return result;
}
char firstChar = inputString.charAt(0);
char firstCharToUpperCase = Character.toUpperCase(firstChar);
result = result firstCharToUpperCase;
for (int i = 1; i < inputString.length(); i++ ) {
char currentChar = inputString.charAt(i);
char previousChar = inputString.charAt(i - 1);
if (previousChar == ' ') {
char currentCharToUpperCase = Character.toUpperCase(currentChar);
result = result + currentCharToUpperCase;
} else {
char currentCharToLowerCase = Character.toLowerCase(currentChar);
result = result + currentCharToLowerCase;
}
}
return result;
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter an input String: ");
String inputString = scanner.nextLine();
System.out.println("Camel Case: "+ toCamelCase(inputString));
}
}
Language:

Monika
11 Jun, 2017 1:13 AM
<!DOCTYPE html>
<html>
<body>
<?php
function Camel() {
// input string
$arr ="what is your name";
echo "Input string is :" . $arr."<br/>";
// function to convert in Camel notation
$camel =ucwords ($arr) ;
// printing string in Camel Notation
echo $camel;
}
// function calling
Camel() ;
?>
</body>
</html>
Language:

Veera Chowdary Kamani
6 Sep, 2018 1:16 AM
<p>string=input("enter string\n")
print(string.title())
</p>
Language:

Veera Chowdary Kamani
6 Sep, 2018 10:49 PM
<p>string="hello world"
print(string.title())</p>