aspose file tools
The moose likes Beginning Java and the fly likes Initial Capital Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Initial Capital" Watch "Initial Capital" New topic
Author

Initial Capital

prabhu kandanur
Ranch Hand

Joined: Oct 18, 2003
Posts: 34
Hi All
How to contert the string say 'hello how are you' to 'Hello How Are You'
(initial capitals) in java any source available
and where can i get the sample core java source code examples that is useful for application development.

prabhu
Gregg Bolinger
Ranch Hand

Joined: Jul 11, 2001
Posts: 15230

Moving to Java In General (Beginner) forum...
Ray Stojonic
Ranch Hand

Joined: Aug 08, 2003
Posts: 326
Off the top of my head, I see 2 ways of handling this.
1- recursively break the string into its component words, the end condition for the recursion would be that there are no more spaces in the string. Then return an assemblage of capitalized words.
2- use the String.split method to produce an array of individual words, capitalize each one and reassemble.
There are, I'm sure, other ways of doing this.
There exists on the web more example Java code than you could read in the rest of your days, trying looking for what you need.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Initial Capital
 
Similar Threads
J2EE Techology
addition and subtraction of time
ArrayList vs Vector Size and Capacity difference ?
Which IDE support JSP 2.0
java