http://localhost:7001/
部分来自
http://localhost:7001/www.facebook.com
得到输出
www.facebook.com
什么是我可以用来实现这个确切模式的正则表达式?
var URL = "http://localhost:7001/www.facebook.com"; var newURL = URL.replace (/^[a-z]{4,5}\:\/{2}[a-z]{1,}\:[0-9]{1,4}.(.*)/,'$1'); // http or https alert (newURL);
在行动Here中查看此代码
问候,胜利者