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