Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How u convert string "hi pravin how are you?" to
"Hi Pravin How Are You?"

Answers were Sorted based on User's Feedback



How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / nachikethas

use a perl one liner like this

perl -e '$var="hi pravin how are you";@arr=split("
",$var);foreach $wrd(@arr){print ucfirst($wrd)." ";}'

Is This Answer Correct ?    8 Yes 5 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / padmakumar

The file "test" contains "hi pravin how are you?".

sed -e "s/^[a-z]/\U&/" -e "s/[[:space:]][a-z]/ \U&/g" test

Is This Answer Correct ?    5 Yes 2 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / vipul dalwala

echo "hi pravin how are you?" | awk 'BEGIN { ORS = ""
upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
lower = "abcdefghijklmnopqrstuvwxyz" }
{
for (i = 1; i <= NF; i++) {
FC = substr($i, 1, 1)
if (C = index(lower, FC))
FC = substr(upper, C, 1)
print FC substr($i,2) " "
}
print "\n"
}'

Is This Answer Correct ?    3 Yes 1 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / saravanan

$line = "hi Praveen How are you";

$line =~ s/\b(\w+)\b/ucfirst($1)/e;


print $line;

Is This Answer Correct ?    2 Yes 0 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / mahfooz

echo hi praveen how are you | tr ' ' '\n' | perl -n -
e 'print "\u$_"' | tr '\n' ' '

Is This Answer Correct ?    1 Yes 0 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / manish yadav

echo hi praveen how are you|sed 's/ [a-z]/\U&/g'|sed 's/^[a-
z]/\U&/g'

Is This Answer Correct ?    9 Yes 11 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / pravin

Dear amlan Iwant answer which work for any string given.

Is This Answer Correct ?    7 Yes 13 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / sonia

Use perl :-)

msg="hi praveen how are you"
msg=`echo $msg | perl -n -e 'print ucfirst(lc);'`

Is This Answer Correct ?    4 Yes 10 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / manuswami

echo "hi praveen how are you"|sed -e 's/
[a-z]/\U&/g'\;'s/^[a-z]/\U&/g'

Is This Answer Correct ?    9 Yes 16 No

How u convert string "hi pravin how are you?" to "Hi Pravin How Are You?" ..

Answer / amlan

sed 's/hi pravin how are you?/Hi Pravin How Are You?/g'
filename

Is This Answer Correct ?    15 Yes 26 No

Post New Answer

More Shell Script Interview Questions

write a non recursive shell script that accepts any number of arguments and prints them in the reverse order

3 Answers  


What is the basic difference you find between a shell script and perl?

3 Answers   Yahoo,


Write a shell script in Linux to shift all characters in a file forward by five characters. (Thus “a” becomes “f’”).

2 Answers   Ignou, Tripura Info,


Given a file find the count of lines containing the word "abc".

0 Answers  


What is shell and shell script?

0 Answers  


How can I Debug a shell scripts and Perl scripting?? or How do you debug a shell scripting and perl scripting ( at the compile time error or run time error) in Unix environment ?

4 Answers  


What are types of shells?

0 Answers  


Can shell script run on windows?

0 Answers  


How to customise the other shell?

2 Answers   Quest,


What happens when you type ls?

0 Answers  


What is MUTEX?

1 Answers  


Can you write a script to portray how set –x works?

0 Answers  


Categories