CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: JavaScript

GetNthPosition

110 Views
Copy Code Show/Hide Line Numbers
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

Add a comment


Report Abuse
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