I have one string :
function test(){
  var datas = "http://localhost/test/test.html?src=www.123@gmail.com(testing)";
  var spl = datas.match(/[^src=]?\b*/g);
 document.getElementById('demo').innerHTML = spl;
  }
test();<p id="demo"></p>I Need ah whole string after the src= string match.i need a answer like www.123@gmail.com(testing) .please help me ...correct my code
 
     
    