CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets for: howard dierking
function GetNthPosition(str, c, occurrence) {
   var lastoccurrence = 0;
   for (var i = 0; i < occurrence; i++) {
      var t = str.indexOf(c, lastoccurrence + 1);
      if(t == lastoccurrence)
         return lastoccurrence;
      lastoccurrence = t;
   }
   return lastoccurrence;
}
by howard dierking   July 06, 2010 @ 12:01am
Tags:
110 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate