What's the most efficient way to trim the suffix in Java, like this:
title part1.txt
title part2.html
=>
title part1
title part2
|
|
This is the sort of code that we shouldn't be doing ourselves. Use libraries for the mundane stuff, save your brain for the hard stuff. In this case, use FilenameUtils.removeExtension() from Apache Commons IO |
||||
|
|
|
||||
|
As using the Take for example the following path:
Using the one-liner will result in:
That's incorrect. The result should have been Need for checks Inspired by skaffman's answer, I took a look at the In order to recreate its behavior, I wrote a few tests the new method should fulfill, which are the following: Path Filename -------------- -------- a/b/c c a/b/c.jpg c a/b/c.jpg.jpg c.jpg a.b/c c a.b/c.jpg c a.b/c.jpg.jpg c.jpg c c c.jpg c c.jpg.jpg c.jpg (And that's all I've checked for -- there probably are other checks that should be in place that I've overlooked.) The implementation The following is my implementation for the
Running this The method was tested with the following code. As this was run on Windows, the path separator is a
The results were:
The results are the desired results outlined in the test the method should fulfill. |
|||
|
|
|
|||||||||
|
|
BTW, in my case, when I wanted a quick-n-dirty solution to remove a specific extension, this is approximately what I did:
|
|||
|
|
Is this a trick question? :p I can't think of a faster way atm. |
|||
|
|
|
I found coolbird's answer particularly useful. But I changed the last result statements to:
as I wanted the full path name to be returned. So "C:\Users\mroh004.COM\Documents\Test\Test.xml" becomes "C:\Users\mroh004.COM\Documents\Test\Test" and not "Test" |
|||
|
|
|
I would do like this:
Starting to the end till the '.' then call substring. Edit: Might not be a golf but it's effective :) |
|||||||
|