“Uzyskaj rozszerzenie plików JS” Kod odpowiedzi

JavaScript Pobierz rozszerzenie pliku

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

JavaScript Pobierz rozszerzenie pliku z ciągu

// 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

Uzyskaj rozszerzenie plików 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

Jak uzyskać rozszerzenie pliku w JavaScript

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

Odpowiedzi podobne do “Uzyskaj rozszerzenie plików JS”

Pytania podobne do “Uzyskaj rozszerzenie plików JS”

Więcej pokrewnych odpowiedzi na “Uzyskaj rozszerzenie plików JS” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu