I wrote a rather hefty regular expression to be used in a coffee-script project. It is intended to take a big chunk of user text (messages, posts, prose) and find all the potential URLs in there, being as greedy as possible.
urlGrabber = ///
(\s|^) # Start after a whitespace or string[0]
([a-zA-Z]+\://)? # Captures any protocol (just not //)
(\w+:\w+@)? # Username:Password
([a-zA-Z\d-]|[a-zA-Z\d-]\.)* # Subdomains
[a-zA-Z\d-]{2,} # Domain name
\. # THE DOT
([a-zA-Z]{2,4}(:\d+)?) # Domain Extension with Port
([/\?\#][\S/]*)* # Some Request, greedy capture
\b # Last word boundary
/? # Optional trailing Slash
///g
I am running into problems with string like abc.mno.st.u.xvy where abs.mno.st gets parsed as a string. This should not be captured at all. Same goes for as.ds.d. where as.ds gets captured.
Could anyone please explain why this is happening and/or help out with the changes needed to fix that?
\sat the end solve your problem? – Tim N Nov 15 '12 at 21:29\s? – arvidkahl Nov 15 '12 at 21:39