I was wondering how I would write a method to count the number of words in a java string only by using string methods like charAt, length, or substring.
Loops and if statements are okay!
I really appreciate any help I can get! Thanks!
|
|
||||
|
|
|
I think something like this would work even with multiple spaces and leading trailing spaces and blank lines:
Hope that helps. More info about split here. |
||||
|
|
|
|||
|
|
|
Algo in O(N)
|
||||
|
|
|
||||
|
|
|
public class TestStringCount {
} |
|||
|
|