I am trying to extract a string from this string:
...width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F84915247&color=da1716&auto_play=false&show_artwork=true"...
All I want is the URL portion:
http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F84915247&
This is the regex I made:
$regex = "/^httpamp$/", but it does not work.