String match = "hello";
String text = "0123456789hello0123456789";
int position = getPosition(match, text); // should be 10, is there such a method?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
The family of methods that does this are:
|
|||||||
|
See the String javadoc |
|||
|
|
|
You can get all matches in a file simply by assigning inside while-loop, cool:
|
|||||||||
|
