从网址中删除guid字符串

时间:2014-05-09 19:37:07

标签: 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/, '');

1 个答案:

答案 0 :(得分:3)

你错过了连字符

\b[a-f\d-]{35}\b