Auto-recognize links?

In PHP I’ve got a few functions that will turn data into links based on
if it recognizes “http://”, “www.” etc etc.

How can I do this with Ruby?

For instance, in a forums setting if a user posted a link to something
like http://example.com

It’d basically turn it into a clickable link:
<a
href="http://example.com">http://example.com</a>

I think everything you’d need to do to validate and produce links should
be in the core URI class: http://www.ruby-doc.org/core/classes/URI.html

Josh P. wrote:

In PHP I’ve got a few functions that will turn data into links based on
if it recognizes “http://”, “www.” etc etc.

How can I do this with Ruby?

For instance, in a forums setting if a user posted a link to something
like http://example.com

It’d basically turn it into a clickable link:
<a
href="http://example.com">http://example.com</a>

On Thu, Oct 9, 2008 at 12:20 AM, Ted H. [email protected] wrote:

I think everything you’d need to do to validate and produce links should
be in the core URI class: http://www.ruby-doc.org/core/classes/URI.html

Interesting, did not know that. Seems bad though:
URI.extract(“Visit Google”) # => [“Google”]

You could borrow code from Rails’ auto_link() which handles that kind
of stuff better:
http://api.rubyonrails.com/classes/ActionView/Helpers/TextHelper.html#M001737

On Oct 8, 6:09 pm, Henrik N. [email protected] wrote:

It’d basically turn it into a clickable link:
<a
href="http://example.com">http://example.com


Posted viahttp://www.ruby-forum.com/.- Hide quoted text -

  • Show quoted text -

Have you looked at hpricot