JavaScript Program to Find the Index of the Last Occurrence of a Substring in a String
Last Updated :
10 Jul, 2024
Finding the index of the last occurrence of a substring in a string is a common task in JavaScript. The last occurrence of a substring in a string in JavaScript refers to finding the final position where a specified substring appears within a given string. We may want to know the position of the last occurrence of a specific substring within a given string.
There are several methods that can be used to find the index of the last occurrence of a substring in a string in JavaScript, which are listed below:
We will explore all the above methods along with their basic implementation with the help of examples.
Using lastIndexOf() Method
The lastIndexOf() method in JavaScript is used to find the index of the last occurrence of a specified substring in a string. It searches the string from the end to the beginning and returns the index of the last occurrence of the substring, or -1 if the substring is not found.
Syntax:
str.lastIndexOf(searchValue , index)
Example: In this example, we find the last occurrence index of the substring “Computer” in the text. It displays the index if found; otherwise, indicates absence.
JavaScript
const text = "GeeksforGeeks, A Computer science Portal.";
// Substring to search for
const substring = "Computer";
// Using lastIndexOf() method
const lastIndex = text.lastIndexOf(substring);
if (lastIndex !== -1) {
console.log(`Last occurrence of '
${substring}
' found at index ${lastIndex}`);
} else {
console.log(
`'${substring}' not found in the text.`);
}
OutputLast occurrence of '
Computer
' found at index 17
Using Regular Expression
Regular expressions provide a powerful way to search for patterns in strings. You can use the RegExp constructor along with the exec() method to find the last occurrence of a substring in a string.
Syntax:
const regex = new RegExp(substring, 'g');
Example: In this example,we are using a RegExp and exec(), to finds the last occurrence index of the substring “sample” in the text and displays it.
JavaScript
const text = "Hello, this is a sample text. This text is a sample.";
// Substring to search for
const substring = "sample";
// Create a regular expression
const regex = new RegExp(substring, 'g');
let match;
let lastIndex = -1;
while ((match = regex.exec(text)) !== null) {
lastIndex = match.index;
}
if (lastIndex !== -1) {
console.log(`Last occurrence of '
${substring}
' found at index
${lastIndex}`);
} else {
console.log(`'${substring}
' not found in the text.`);
};
OutputLast occurrence of '
sample
' found at index
45
Using split() and pop()
Using split() and pop(), this approach splits the text at the substring, extracts the last segment, and calculates the index of its start within the original string.
Syntax:
const segments = str.split(substring);
const lastIndex = str.length - segments.pop().length - substring.length;
Example: In this example, the index of the last occurrence of “Science” is found by splitting the string and calculating the index based on the lengths of segments and substring.
JavaScript
function lastIndexOfSubstring(str, substr) {
let lastIndex = -1;
for (let i = 0; i <= str.length - substr.length; i++) {
if (str.substr(i, substr.length) === substr) {
lastIndex = i;
}
}
return lastIndex;
}
console.log(lastIndexOfSubstring("hello world hello", "hello")); // Output: 12
OutputLast occurrence of Science found at index :26
Using a Loop
Using a loop, iterate through the string, comparing substrings of the same length as the target substring with it. Track the index of the last occurrence. Return the index found after iterating through the entire string.
Example: In this example we defines a function lastIndexOfSubstring that finds the last occurrence of a substring within a string by iterating through the string and updating the last index each time the substring is found.
JavaScript
function lastIndexOfSubstring(str, substr) {
let lastIndex = -1;
for (let i = 0; i <= str.length - substr.length; i++) {
if (str.substr(i, substr.length) === substr) {
lastIndex = i;
}
}
return lastIndex;
}
console.log(lastIndexOfSubstring("hello world hello", "hello"));
Using Array.prototype.reduceRight() Method
The Array.prototype.reduceRight() method applies a function against an accumulator and each value of the array (from right to left) to reduce it to a single value. We can use this method to find the last occurrence of a substring by iterating the string array in reverse.
Example: In this example, we use reduceRight() to find the last occurrence index of the substring “example” in the given text. The method accumulates the index if the substring is found, otherwise returns -1.
JavaScript
const text = "This is an example text with example as a repeated example.";
// Substring to search for
const substring = "example";
// Using reduceRight() method
const lastIndex = text.split('').reduceRight((acc, _, i, arr) => {
if (arr.slice(i, i + substring.length).join('') === substring && acc === -1) {
return i;
}
return acc;
}, -1);
if (lastIndex !== -1) {
console.log(`Last occurrence of '${substring}' found at index ${lastIndex}`);
} else {
console.log(`'${substring}' not found in the text.`);
}
OutputLast occurrence of 'example' found at index 51
Using indexOf() with a Loop
In this approach, we repeatedly use the indexOf method to find occurrences of the substring, starting the search just after the last found occurrence until no more occurrences are found. This way, we keep track of the last found index.
Example: This example demonstrates how to find the index of the last occurrence of a substring using indexOf in a loop.
JavaScript
function lastIndexOfSubstring(str, substring) {
let lastIndex = -1;
let currentIndex = -1;
while ((currentIndex = str.indexOf(substring, currentIndex + 1)) !== -1) {
lastIndex = currentIndex;
}
return lastIndex;
}
// Example usage:
let text = "This is a sample example of a sample example text example.";
let substring = "example";
console.log(lastIndexOfSubstring(text, substring)); // Output: 49
Similar Reads
JavaScript Program to find the Index of Last Occurrence of Target Element in Sorted Array
In this article, we will see the JavaScript program to get the last occurrence of a number in a sorted array. We have the following methods to get the last occurrence of a given number in the sorted array. Methods to Find the Index of the Last Occurrence of the Target Element in the Sorted ArrayUsin
4 min read
JavaScript Program to Find Longest Common Substring Between Two Strings
In this article, we will see how to find the longest common substring between two strings in JavaScript. A substring is a contiguous sequence of characters within a string. It can be obtained by extracting part of the string starting from any position. We are going to write a JavaScript function tha
4 min read
JavaScript Program to Find the First Repeated Word in String
Given a string, our task is to find the 1st repeated word in a string. Examples: Input: âRavi had been saying that he had been thereâOutput: hadInput: âRavi had been saying thatâOutput: No RepetitionBelow are the approaches to Finding the first repeated word in a string: Table of Content Using SetUs
4 min read
How to Get the Last N Characters of a String in JavaScript
Here are the different methods to get the last N characters of a string in JavaScript. 1. Using slice() MethodThe slice() method is the most commonly used approach for extracting the last N characters, thanks to its simplicity and support for negative indices. [GFGTABS] JavaScript const getChar = (s
2 min read
JavaScript Program to Check Whether a String Starts and Ends With Certain Characters
In this article, We are going to learn how can we check whether a string starts and ends with certain characters. Given a string str and a set of characters, we need to find out whether the string str starts and ends with the given set of characters or not. Examples: Input: str = "abccba", sc = "a",
3 min read
JavaScript Program to Find Minimum Rotations Required to get the Same String
In this article, we are given a string str, our task is to find the minimum number of rotations required to get the same string using JavaScript. Example 1: Input: str = "geeks"Output: 5Explanation:i=1 : substring ="eekgeeks"i=2 : substring ="ekgeeks" i=3 : substring ="kgeeks"i=4 : substring ="kgee"
3 min read
JavaScript Program to Print the First Letter of Each Word
Printing the first letter of each word involves extracting the initial character from every word in a given string, typically accomplished by splitting the string into words and selecting the first character from each resulting word. Examples of Printing the First Letter of Each Word Table of Conten
3 min read
JavaScript Program to find Lexicographically next String
In this article, we are going to learn how can we find the Lexicographically next string. Lexicographically next string refers to finding the string that follows a given string in a dictionary or alphabetical order. Examples: Input : testOutput : tesuExplanation : The last character 't' is changed t
3 min read
How to Replace the Last Occurrence of a Substring in a String in Java?
In this article, we will learn about replacing the last instance of a certain substring inside a string as a typical need. We'll look at a practical Java solution for this in this post. Replace the last occurrence of a Substring in a String in JavaWe may use the lastIndexOf() method to determine the
2 min read
Javascript Program To Find Length Of The Longest Substring Without Repeating Characters
Given a string str, find the length of the longest substring without repeating characters. For âABDEFGABEFâ, the longest substring are âBDEFGAâ and "DEFGAB", with length 6.For âBBBBâ the longest substring is âBâ, with length 1.For "GEEKSFORGEEKS", there are two longest substrings shown in the below
5 min read