Reputation: 479
How can i extract urls from a string in C?
Say we have "bla bla bla bla bla blaaa http://www.stackoverflow.com blaaa bllaaa"
i want to pass that link to a varible.
How can i do that?
Thanks.
Upvotes: 1
Views: 496
Reputation: 16656
"http://"
using strstr
function.Upvotes: 2