“Получите расширение файла JS” Ответ

JavaScript Получите расширение файла

var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"
Grepper

JavaScript Получите расширение файла из строки

// 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);
Fancy Ferret

Получите расширение файла JS

function getFileNameWithExt(event) {

  if (!event || !event.target || !event.target.files || event.target.files.length === 0) {
    return;
  }

  const name = event.target.files[0].name;
  const lastDot = name.lastIndexOf('.');

  const fileName = name.substring(0, lastDot);
  const ext = name.substring(lastDot + 1);

  outputfile.value = fileName;
  extension.value = ext;
  
}
Elegant Eland

Как получить расширение файлов в JavaScript

var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"
Fancy Fly

Ответы похожие на “Получите расширение файла JS”

Вопросы похожие на “Получите расширение файла JS”

Больше похожих ответов на “Получите расширение файла JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования