vote up 4 vote down star
2

Unless I am missing an obvious built in method what is the quickest way to get the nth occurrence of a string within a string.

I could loop the indexof method with the start index being updated on each loop but it sounds wasteful to me.

flag

6 Answers

vote up 8 vote down check

That's basically what you need to do - or at least, it's the easiest solution. All you'd be "wasting" is the cost of n method invocations - you won't actually be checking any case twice, if you think about it. (IndexOf will return as soon as it finds the match, and you'll keep going from where it left off.)

link|flag
I suppose your right, it does seem like there should be a built in method though, i'm sure it's a commmon occurrence. – petebob796 Oct 9 '08 at 10:48
Really? I can't remember ever having to do it in about 13 years of Java and C# development. That doesn't mean I've really never had to do it - but just not often enough to remember. – Jon Skeet Oct 9 '08 at 11:01
vote up 1 vote down

I would use a regular expressions for that then you have to optimal way of matching the string within the string.

This in one of the beautiful DSLs we all should use when possible.

An example in VB.net the code is almost the same in C#.

link|flag
I would place good money on the regular expressions version being significantly harder to get right than "keep looping and doing simple String.IndexOf". Regular expressions have their place, but shouldn't be used when simpler alternatives exist. – Jon Skeet Oct 9 '08 at 12:06
vote up 5 vote down

You really could use the regular expression /((s).*?){n}/ to search for n-th occurrence of substring s.

In C# it might look like this:

public static class StringExtender
{
    public static int NthIndexOf(this string target, string value, int n)
    {
        Match m = Regex.Match(target, "((" + value + ").*?){" + n + "}");

        if (m.Success)
            return m.Groups[2].Captures[n - 1].Index;
        else
            return -1;
    }
}
link|flag
I just successfully used this regex snipit - thanks for posting! – Adam McKee May 11 at 20:51
Actually, this should be the accepted answer!! – Yogesh Nov 11 at 7:24
vote up 0 vote down

Alexander -

Your solution worked great. It will save me much work. Many thanks.

Tim S.

link|flag
vote up 0 vote down
private int IndexOfOccurence(string s, string match, int occurence)
{
    int i = 1;
    int index = 0;

    while (i <= occurence && (index = s.IndexOf(match, index + 1)) != -1)
    {
        if (i == occurence)
            return index;

        i++;
    }

    return -1;
}

or in C# with extension methods

public static int IndexOfOccurence(this string s, string match, int occurence)
{
    int i = 1;
    int index = 0;

    while (i <= occurence && (index = s.IndexOf(match, index + 1)) != -1)
    {
        if (i == occurence)
            return index;

        i++;
    }

    return -1;
}
link|flag
vote up 0 vote down

"int index = -1 ;" shoul be instead of "int index = 0 ; " in order to find the true value...

link|flag

Your Answer

Get an OpenID
or

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