Skip to content

Instantly share code, notes, and snippets.

@matheusmurta
Last active May 29, 2020 18:08
Show Gist options
  • Save matheusmurta/72bba26b1353aa5cc854b3969a7bd3f8 to your computer and use it in GitHub Desktop.
Save matheusmurta/72bba26b1353aa5cc854b3969a7bd3f8 to your computer and use it in GitHub Desktop.
Javascript get string after last slash
let str = "http://localhost:8086/#/menu/user"
let index = str.lastIndexOf("/");
result = str.substr(index+1); //result "user"
or
let last = str.split("/").pop();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment