I have a link being parsed in some HTML code as below:-
"http://advert.com/go/2/12345/0/http://truelink.com/football/abcde.html?"
What I am looking to do is extract the second part of the code commencing with the second occurrence of http: so in the above case, I want to extract
"http://truelink.com/football/abcde.html?"
I have considered slicing the URL into segments however I am unsure of the structure will remain the same with the first part as time goes on.
Is it possible to identify the second occurrence of 'http' and then parse out the code from there to the end?