Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to get all character positions of a search phrase for a given string of text?

For example, say we have "the red cat is watching the red car stopped at the red stop sign"

INPUT: "red" OUTPUT: [5, 29, 52]

share|improve this question

1 Answer

up vote 2 down vote accepted

You can use the indexOf method of the string class:

String haystack = "the red cat is watching the red car stopped at the red stop sign";
String needle = "red";
int idx = 0, pos;
while( (pos = haystack.indexOf(needle,idx)) != -1) {
        System.out.println(pos+1);
        idx += pos+1;     
}

See it

share|improve this answer
Thanks for helping me find the lost needles! ;-) – SliverNinja Nov 20 '11 at 7:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.