Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save OlivierJM/2d096363f93f8d2097f0e47c2dff126b to your computer and use it in GitHub Desktop.
Save OlivierJM/2d096363f93f8d2097f0e47c2dff126b 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