-
need a little help
I need to get a sentence to capitalize the first letter of each word. Example: input would look like "abstract window toolkit" and I need the output to be "Abstract Window Toolkit". And if possible use a class method while doing it. I've been trying to do it by using the indexOf() and substring() functions but i cant figure it out.
-
Use the StringTokenizer class:
http://java.sun.com/j2se/1.3/docs/ap...Tokenizer.html
...and then capitalize the first letter of each token.
ArchAngel.
O:-)
-
I prefer using split to tokenize. It's easier i find 
String[] tokenHolder = whateverString.split(" ");
Then you will have tokenHolder array with each tokens occupying each slots.
-
Sure, it's just that it was only introduced in 1.4 - my IDE is fixed to 1.3.
ArchAngel.
O:-)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks