Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js indexof second occurrence

const string = "XYZ 123 ABC 456 ABC 789 ABC";

function getPosition(string, subString, index) {
  return string.split(subString, index).join(subString).length;
}

console.log(
  getPosition(string, 'ABC', 2) // --> 16
)
 Run code snippet
Comment

PREVIOUS NEXT
Code Example
Javascript :: sentry ignoreerrors 
Javascript :: array.from foreach 
Javascript :: radio javascript checked 
Javascript :: install react bootstrap 
Javascript :: jquery not readonly 
Javascript :: add two numbers in javascript 
Javascript :: jquery use variable in string 
Javascript :: from string to number js 
Javascript :: requestanimationframe 
Javascript :: debounce events in js 
Javascript :: findindex js 
Javascript :: javascript combobox 
Javascript :: angular rellax 
Javascript :: dynamic calendar in javascript with example 
Javascript :: Conditionallu inline styling in react 
Javascript :: regular expression for emails 
Javascript :: how to check if user has installed pwa 
Javascript :: nodejs select in mysql 
Javascript :: js array.prototype.join 
Javascript :: get zipcode from google places autocomplete 
Javascript :: how to kill all node processes 
Javascript :: string concat javascript 
Javascript :: Use ctrl + scroll to zoom the map & Move map with two fingers on mobile 
Javascript :: how to check string uppercase or lowersace using regex javascript 
Javascript :: How to abreviate digits in js 
Javascript :: how to crash with js 
Javascript :: moment get month short name 
Javascript :: regex.match 
Javascript :: express post not working 
Javascript :: jquery each hover 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =