Back
What's the most efficient way to trim the suffix in Java, like this:
title part1.txttitle part2.html=>title part1title part2
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, I recommend using FilenameUtils.removeExtension() from Apache Commons IO
30.9k questions
32.9k answers
500 comments
665 users