JavaScriptでURLの最初のパスをチェックする方法


  1. 文字列操作を使用する方法:
const url = "https://example.com/path1/path2/page.html";
const firstPath = url.split("/")[3];
console.log(firstPath); // 結果: "path1"
  1. URLオブジェクトを使用する方法:
const url = new URL("https://example.com/path1/path2/page.html");
const firstPath = url.pathname.split("/")[1];
console.log(firstPath); // 結果: "path1"
  1. 正規表現を使用する方法:
const url = "https://example.com/path1/path2/page.html";
const match = url.match(/^\/([^/]+)\//);
const firstPath = match ? match[1] : null;
console.log(firstPath); // 結果: "path1"

これらの方法を使用すると、与えられたURLの最初のパスを抽出することができます。選択した方法に応じて、適切なコードを選んで使用してください。