An example to calculate the no.of times a word repeats in a string in Java with a simple logic.
Ignoring case: Here, both the find string and st (main string) are converted into lower case and stored in another object temporarily (here, no name is given to those objects).So it is obvious that the original strings 'find' and 'st' are not modified since the operations are performed on another temporary String object.
Example
Output
Ignoring case: Here, both the find string and st (main string) are converted into lower case and stored in another object temporarily (here, no name is given to those objects).So it is obvious that the original strings 'find' and 'st' are not modified since the operations are performed on another temporary String object.
No comments:
Post a Comment