In Haskell, how can get the filename without the file extension?

Viewed 987

Say I have a filename (a list of characters):

"myfile.xml"

How can I get:

"myfile"

?

1 Answers
Related