show/hide this revision's text 2 Indentation error.

I am not familiar with Rails, but the following is (untested) PHP code. You can probably translate this very quickly to Rails if you find it useful.

$sURL = "This is a title to convert to URL-format. It has 1 number in it!";
// lower-case
$sURL = strtolower($sURL);
// replace all non-word characters with spaces
$sURL = preg_replace("/\W+/", " ", $sURL);
// remove trailing spaces (so we won't end with a separator)
$sURL = trim($sURL);
// replace spaces with separators (hyphen)
$sURL = str_replace(" ", "-", $sURL);
echo $sURL;
// outputs: this-is-a-title-to-convert-to-url-format-it-has-1-number-in-it

Hope this helps.

show/hide this revision's text 1

I am not familiar with Rails, but the following is (untested) PHP code. You can probably translate this very quickly to Rails if you find it useful.

    $sURL = "This is a title to convert to URL-format. It has 1 number in it!";
// lower-case
$sURL = strtolower($sURL);
// replace all non-word characters with spaces
$sURL = preg_replace("/\W+/", " ", $sURL);
// remove trailing spaces (so we won't end with a separator)
$sURL = trim($sURL);
// replace spaces with separators (hyphen)
$sURL = str_replace(" ", "-", $sURL);
echo $sURL;
// outputs: this-is-a-title-to-convert-to-url-format-it-has-1-number-in-it

Hope this helps.