Open In App

How to get value of a string after last slash in JavaScript?

The task is to get the string after a specific character(‘/’). Here are a few of the most used techniques discussed. We are going to use JavaScript. 

Below are the approaches used to get the value of a string after the last slash in JavaScript:



Approach 1: Using .split() method and .length property

Example: This example uses the approach discussed above. 






let str = "folder_1/folder_2/file.html";
 
function GFG_FUN() {
     
    str = str.split("/");
 
    console.log(str[str.length - 1]);
}
 
GFG_FUN();

Output
file.html

Approach 2: Using .lastIndexOf(str) method and .substring() method

Example: This example uses the approach discussed above. 




let str = "folder_1/folder_2/file.html";
 
function GFG_FUN() {
    console.log(str.substring(str.lastIndexOf('/') + 1));
}
 
GFG_FUN();

Output
file.html

Approach 3: Using .split() method and pop() method

Example: This example uses the above approach.




let str = "folder_1/folder_2/file.html";
 
function GFG_FUN() {
    str = str.split("/").pop();
    console.log(str);
}
 
GFG_FUN();

Output
file.html

Article Tags :