I want to find every url in text and wrap them with a tag (<a href="...">...</a>).
var src = "bla blaaa blaaaaaa 1 http://yahoo.com text something about and. http://www.google.com";
var match = /http:\/\/([a-z0-9.-]+)/.exec(src); //this only can one matched
// result: ["http://yahoo.com", "yahoo.com"]
But i need to wrap every links.