);

eg:
var url = 'https://gw.dushu.io/r/34440a483c1c'
console.log(trim(url))   //结果:httpsgwdushuior34440a483c1c
function trim(url) {
    url = url.replace(/:/g,'');
    url = url.replace(///g,'');
    url = url.replace(/./g,'');
    return url
}

相关推荐