I am trying to match URL using regex
https?:\/\/.*\..*
But unable to understand how to end the match if a space occurs after the URL.
For example in the below Image, for last match, i want it to end, before the space. But nothing seems to be working.
Can you also explain why adding \b (word boundary) at the end doesn't work ?