I need to be able to find like the 4th and 10th occurrence in a string. I looked through the docs and found First and Last occurrence, but nothing in between. I can use Regex and a few lines of code but was looking for a single function to do this with. Are there any functions or Libs I can use to do this, something like:
MyVar.IndexOf("#", 4)
MyVar.IndexOf("#", 10)
MyVar.IndexOf("#", 4)
MyVar.IndexOf("#", 10)