You will want to setup a custom route to point the url to the controller that will handle it. Since you are using Rails, here is an introduction in using their routing engine.
EditSorry, I misunderstood your question. In Ruby, you will need a regex like you already know and here is the regex to use:
def permalink_for(str)
str.gsub(/[^\w\/]|[!\(\)\.]+/, ' ').strip.downcase.gsub(/\ +/, '-')
end
