split filetype string javascript code example
Example 1: javascript find file extension from string
var ext = fileName.split('.').pop();
Example 2: 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];
}