Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enix-app/a8370aa562387717b81e6c92eac79cb0 to your computer and use it in GitHub Desktop.
Save enix-app/a8370aa562387717b81e6c92eac79cb0 to your computer and use it in GitHub Desktop.
Regex to remove file extension from JS string.
var filenameFull = "tm_icons.png";
//Regex to remove
var filenameText = filenameFull.replace(/\.[^/.]+$/, "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment