在我的网址中,我想获取令牌编号,但令牌编号可能是数字或 Alpha。我需要始终在不同的情况下获取令牌。如何使用正则表达式实现这一点?
示例网址:
?&token=1905477219/someother/stuff
&token=1905477219
&token=xyzbacsfhsaof
&token=xyzbacsfhsaof/some/other
我怎样才能始终从这些类型的 URL 中获取令牌?
我试过这个:
/(token=.*)/g
我在寻找 :
?&token=1905477219/someother/stuff - in this case "1905477219"
和
&token=xyzbacsfhsaof - in this case "xyzbacsfhsaof"
..像这样
但它不起作用。任何人都可以帮助我吗?
谢谢大家,这对我来说很好:
var reg = window.location.href.match(/token=([^\/]*)/)[1];