Skip to content

给某个资源的链接,如 https://www.baidu.com/index.html ,请实现一个方法,获取该资源的后缀,如 html

Posted on:2023年3月12日 at 17:28

本题主要考察字符串相关的方法,实现比较简单,下面列举两个实现方法。

var fileName = "https://www.baidu.com/index.html";

function getFileExtension(url) {
  if (typeof url !== "string") {
    return "";
  }

  // 方法一
  return url.substring(url.lastIndexOf(".") + 1);

  // 方法二
  //return url.split('.').pop().toLowerCase();
}
原文转自:https://fe.ecool.fun/topic/478e5483-7797-4844-be41-c7b96a383c00