Regex to get first word after slash in URL

后端 未结 7 2198
孤街浪徒
孤街浪徒 2020-12-08 21:32

I need to get the first word after slash in a url in javascript, I assume using a regex would be ideal.

Here\'s an idea of what the URLs can possibly look like :

7条回答
  •  没有蜡笔的小新
    2020-12-08 21:53

    Here is the quick way to get that in javascript

    var urlPath = window.location.pathname.split("/");
    if (urlPath.length > 1) {
      var first_part = urlPath[1];
      alert(first_part); 
    }
    

提交回复
热议问题