Find a string within another string, search backwards
Posted
by every_answer_gets_a_point
on Stack Overflow
See other posts from Stack Overflow
or by every_answer_gets_a_point
Published on 2010-04-13T21:09:08Z
Indexed on
2010/04/13
21:13 UTC
Read the original article
Hit count: 214
int d;
d = some_string.IndexOf("something",1000);
I want indexOf
to search some_string
, starting at position 1000 and searching backwards. is this possible?
© Stack Overflow or respective owner