All pastes #2087621 Raw Edit

nthindex

public text v1 · immutable
#2087621 ·published 2011-10-07 13:51 UTC
rendered paste body
public static int NthIndexOf(this string s, char c, int n)
{
    var takeCount = s.TakeWhile(x => (n -= (x == c ? 1 : 0)) > 0).Count();
    return takeCount == s.Length ? -1 : takeCount;
}