How to consider exclamation mark as part of URL in regex
Example: The oreginal url is: bla1 bla2 http://www.peckale.com/#!contact/c11m6 bla3 I need to find the URL: http://www.peckale.com/#!contact/c11m6
with regex.
I am using the experation:
((www\.|(http|https|ftp|news|file)+\:\/\/)?[_.a-zA-Z0-9-]+\.[a-zA-Z0-9\/_:@=.+?,##%&~-]*[^.|\'|\# |!|\(|?|,| |>|<|;|\)]*)
But the result is: cut the url after the #
Best regards Shahar