If the first URL always starts at the beginning of the line, you can use SUBSTRING() and CHARINDEX() :
SELECT SUBSTRING(column, CHARINDEX('http://', column, 2), LEN(column)) FROM table
CHARINDEX just looks for the string for the substring and returns the starting position of the substring inside the string. Its third argument is optional and, if set, indicates the starting position of the search, in this case it is 2 , so it did not hit the first http:// .
source share