Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How would I get the last occurrence of an NSString within another NSString? For example, in "abc def ghi abc def ghi," I want to find the index of the second "abc," not the first. I know I could do this with a bunch of rangeOfStrings, but is there already a function for that?

share|improve this question

1 Answer

up vote 91 down vote accepted

Use rangeOfString:options:, including NSBackwardsSearch in the options.

[@"abc def ghi abc def ghi" rangeOfString:@"abc" options:NSBackwardsSearch];
share|improve this answer
haha +1 for beating me so badly ;) – Jason Coco Mar 13 '10 at 21:49
Thanks a lot, saved me a lot of time. – Debashis Mar 13 '10 at 21:52
@Jason: not so badly. It was a photo finish. – outis Mar 13 '10 at 21:54
@Debashis: documentation is our friend. – outis Mar 13 '10 at 21:54
1  
Yup, I usually google things, so it passed my mind. – Debashis Mar 13 '10 at 21:57
show 2 more comments

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.