获取URL除了域名的部分

获取URL除了域名的其他部分
(https://regex101.com/r/vK4rV7/1)[在线测试]

企业微信截图_17042714317645

const getPathFromUrl = (url: string = '') => {
  let regex = /(http[s]?:\/\/)?([^\\/\s]+\/)(.*)/;
  return (url.match(regex) || [])[3];
};
posted @ 2024-01-03 16:45  胡姐姐  阅读(10)  评论(0编辑  收藏  举报