aspose file tools
The moose likes Beginning Java and the fly likes How to Split and count the character 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 "How to Split and count the character" Watch "How to Split and count the character" New topic
Author

How to Split and count the character

athi ram
Greenhorn

Joined: Feb 28, 2011
Posts: 6
hi sir

the String s = "aabbcccf";

i want output

String s = "2a2b3cf";

i don't know which method is suitable...

please help me
Vinoth Kumar Kannan
Ranch Hand

Joined: Aug 19, 2009
Posts: 276

I guess, you'll have to do manual iterating over every single character in the String and then finally form your final String...


OCPJP 6
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32654
    
    4
Welcome to the Ranch

You will have to write down on paper what you intend to do; then you can covert it to code.
athi ram
Greenhorn

Joined: Feb 28, 2011
Posts: 6


successfully executed....
any other way please inform me
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32654
    
    4
You aren't supposed to print "a appears 4 times". You are supposed to have a String with 4a at the beginning.
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

Please UseCodeTags next time. I've added them for you this time. And also add some indentation; another thing I've added.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
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: How to Split and count the character
 
Similar Threads
Integer Conversion
Q from javaBeat on String
null String
How to System.out.println the string reference
String creation question