Hi All,
I have a huge string of multiple URLs in javascript which is of the following format:
var urls = "http://..... , http://..... , http://......"
I need to extract all URLs from the string into individual variables of part of an array. I cant do a urls.split(",") as some urls seem to have commas in them.Is there a good regex I can use to solve this problem ?