Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Martin Labuschin http://labuschin.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Create strings for SEO-friendly URLs

this method returns string, which is perfect for SEO-friendly URLs.

features:
- converts every improper character to a hyphen
- returns a lowercase string

I POSTED AN EVEN BETTER METHOD ON MY BLOG: http://tinyurl.com/2vurbq

def create_callname (title)
	title.downcase.gsub(/[^a-z0-9]+/i, '-')
end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS