I want to match the First url followed by a space using regex expression  while typing in the input box.
For example :
if I type www.google.com it should be matched only after a space followed by the url 
ie www.google.com<SPACE> 
Code
$(".site").keyup(function()
{
   var site=$(this).val();
   var exp = /^http(s?):\/\/(\w+:{0,1}\w*)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/;
   var find = site.match(exp);
   var url = find? find[0] : null;
        if (url === null){
        var exp = /[-\w]+(\.[a-z]{2,})+(\S+)?(\/|\/[\w#!:.?+=&%@!\-\/])?/g;
        var find = site.match(exp);
        url = find? 'http://'+find[0] : null;
      }
});
Please help, Thanks in advance
 
     
     
    