if I have a string which has a lot of times the same word, lets say:
"new question, new topic, new query, new code, new language, new answer"
Here we have the word "new" 6 times, but i want to find the position of the 4th "new".
I know IndexOf returns the position of the first occurrence and LastIndexOf returns the last one, but how can I find the position of the 4th occurrence???
Thanks!