I have such a regular expression:
re.compile(r"((https?):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+-=\\\.&]*)", re.MULTILINE|re.UNICODE)
But that doesn't include hashbangs (#!)
. What do I need to change to get it working? I know I can add !
to a group with #@%
, etc., but that will select something like
Check this out: http://example.com/something/!!!
And I want to avoid that.