Skip to content

Instantly share code, notes, and snippets.

@jumar
Created August 29, 2013 17:31
Show Gist options
  • Save jumar/6381012 to your computer and use it in GitHub Desktop.
Save jumar/6381012 to your computer and use it in GitHub Desktop.
Strip file name from its extension. This expression will remove the last dot followed by one or more characters.
String fileNameWithOutExt = "test.xml".replaceFirst("[.][^.]+$", "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment