I want to figure out if a string contains more then 1 occurance of http://
Like this:
http://uploading.com/files/c8e99378/image-slider-skins.zip/http://www.filesonic.com/file/3524497744/image-slider-skins.zip
I know how to find out if it does, but how do I split the string at the begining of the second http?
strrposandsubstr. Or simpler: a regex looking for the first occurence and stripping until there.