How to trim a file extension from a String in JavaScript?

前端 未结 23 2009
醉酒成梦
醉酒成梦 2020-11-30 17:21

For example, assuming that x = filename.jpg, I want to get filename, where filename could be any file name (Let\'s assume the file nam

23条回答
  •  春和景丽
    2020-11-30 17:51

    I like this one because it is a one liner which isn't too hard to read:

    filename.substring(0, filename.lastIndexOf('.')) || filename
    

提交回复
热议问题