Languages
[Edit]
EN

JavaScript - index of text in string after indicated position

10 points
Created by:
Olivier-Myers
514

In this short article, we would like to show how in JavaScript, find text in a string, looking from indicated position.

Quick solution:

// ONLINE-RUNNER:browser;

// We are looking for `is` text position, starting from index 4.

//                 This one
//              |  |
//              v  v
const text = 'This is some example text.';

const startIndex = 4
const foundIndex = text.indexOf('is', startIndex);

console.log(foundIndex);
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join