Answers for "javascript get extension from filename with input"

0

javascript get file extension from string

// Use the lastIndexOf method to find the last period in the string, and get the part of the string after that:

var ext = fileName.substr(fileName.lastIndexOf('.') + 1);
Posted by: Guest on October-16-2020
0

get file extension file upload control in javascript

<input id='inputfile' type='file' name='inputfile' onChange='getoutput()'><br>
    Output Filename <input id='outputfile' type='text' name='outputfile'><br>
    Extension <input id='extension' type='text' name='extension'>
Posted by: Guest on July-10-2020

Code answers related to "javascript get extension from filename with input"

Code answers related to "Javascript"

Browse Popular Code Answers by Language