标签: javascript regex guid
我目前正在尝试从网址中删除guid id,例如下面提供的示例。它没有删除guid id,我做错了什么?
example url: "/something/9a2cd43-58c6-52e5-a0c1-700b462d613a" window.location.pathname.replace(/\b[a-f\d]{32}\b/, '');
答案 0 :(得分:3)
你错过了连字符
\b[a-f\d-]{35}\b