| Author |
counting support count
|
Puneet N Vyas
Ranch Hand
Joined: Sep 20, 2007
Posts: 61
|
|
there are long string like following in the text file: 76890 012374 213745 768 098 781 091 712 87 ............ ............ i have used string tokenizer to obtain individual string,now i have to obtain support count of say integer 7,which is the number of string that contains it,also if 7 occurs multiple times in a single string or more than one times in multiple strings of a line than it accounts to 1 only in it's support count,ex: line 1 of above text file contains: 76890 0172374 213745 this line gives support count of 1 of number 7,the support count of integer 7 after all the lines of above text files are read has to be 3. can any one tell me the logic of doing this in java thanks and reagrds puneet
|
 |
Gavin Tranter
Ranch Hand
Joined: Jan 01, 2007
Posts: 333
|
|
|
Not really sure what you are requiring, however, from your description, if teh text file has a regular format, then I would look at using the regual expressions (reg ex) that Java supports, to help me out with this.
|
 |
 |
|
|
subject: counting support count
|
|
|