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

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

    In node.js, the name of the file without the extension can be obtained as follows.

    const path = require('path');
    const filename = 'hello.html';
    
    path.parse(filename).name; // hello
    path.parse(filename).ext;  // .html
    

    Further explanation at Node.js documentation page.

提交回复
热议问题