Answers for "split filetype string javascript"

7

javascript find file extension from string

var ext =  fileName.split('.').pop();
Posted by: Guest on March-04-2020
0

get file extension file upload control in javascript

function getFile(filePath) {
        return filePath.substr(filePath.lastIndexOf('\\') + 1).split('.')[0];
    }

    function getoutput() {
        outputfile.value = getFile(inputfile.value);
        extension.value = inputfile.value.split('.')[1];
    }
Posted by: Guest on July-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language