require 'uri'text = %{"testhttp://www.a.com/, and be sureto check http://www.a.com/blog/. Email me at b@a.com.}END_CHARS = %{.,'?!:;}p URI.extract(text, ['http']).collect { |u| END_CHARS.index(u[-1]) ? u.chop : u }