There are text that includes http and https. I tried this to get url.. It works well only for http.
url_regex <- "http[^([:blank:]|\\"|<|&|#\n\r)]+"
When I tried like below, it doesn't work.
url_regex <- "(http|https)[^([:blank:]|\\"|<|&|#\n\r)]+"
To get the urls starting with http or https, where should I modify?
p.s. - I tried with regex which works on other language. What does R used the version of regex?