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

前端 未结 23 2072
醉酒成梦
醉酒成梦 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:46

    Though it's pretty late, I will add another approach to get the filename without extension using plain old JS-

    path.replace(path.substr(path.lastIndexOf('.')), '')

提交回复
热议问题