I need to have a regex capture urls that only end with letters or numbers.
I have this regex here:
(https?)(:\/\/www.site.com.br)(\S){1,}
As it is, this regex allows urls to end with characters like @,!,?, etc.
I tried doing this using lookbehind but I could not. How can I make this character constraint only at the end of the regex?