up vote 45 down vote favorite
64
share [g+] share [fb]

What is a good complete Regex or some other process that would take the title:

How do you change a title to be part of the url like Stackoverflow?

And turn it into

how-do-you-change-a-title-to-be-part-of-the-url-like-stackoverflow

that is used in the SEO-friendly urls on StackOverflow?

The dev environment I am using is Rails but if there are some other platform-specific solutions (.NET, php, django), I would love to see those too.

I am sure I (or another reader) will come across the same problem on a different platform down the line.

I am using custom routes, I mainly want to know how to alter the string to all special chars are removed, it's all lowercase, and all whitespace is replaced.

link|improve this question

Should be migrated to meta; as the question and answer both specifically deal with SO implementation, and the accepted answer is from @JeffAtwood. – casperOne Nov 18 '11 at 20:21
@casperOne Do you think Jeff is not allowed some non-meta reputation? The question is about "how can one do something like this", not specifically "how is this done here". – Paŭlo Ebermann Nov 19 '11 at 13:05
@PaŭloEbermann: It's not about Jeff getting some non-meta reputation (how much reputation he has is really not my concern); the question body specifically referenced StackOverflow's implementation hence the rationale for it being on meta. – casperOne Nov 22 '11 at 14:04
feedback

protected by casperOne Nov 18 '11 at 20:26

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

15 Answers

up vote 58 down vote accepted

Here's how we do it. Note that there are probably more edge conditions than you realize at first glance.

This is the second version, unrolled for 5x more performance (and yes, I benchmarked it). I figured I'd optimize it because this function can be called hundreds of times per page.

/// <summary>
/// Produces optional, URL-friendly version of a title, "like-this-one". 
/// hand-tuned for speed, reflects performance refactoring contributed
/// by John Gietzen (user otac0n) 
/// </summary>
public static string URLFriendly(string title)
{
    if (title == null) return "";

    const int maxlen = 80;
    int len = title.Length;
    bool prevdash = false;
    var sb = new StringBuilder(len);
    char c;

    for (int i = 0; i < len; i++)
    {
        c = title[i];
        if ((c >= 'a' && c <= 'z') || (c >= '0' && c <= '9'))
        {
            sb.Append(c);
            prevdash = false;
        }
        else if (c >= 'A' && c <= 'Z')
        {
            // tricky way to convert to lowercase
            sb.Append((char)(c | 32));
            prevdash = false;
        }
        else if (c == ' ' || c == ',' || c == '.' || c == '/' || 
            c == '\\' || c == '-' || c == '_' || c == '=')
        {
            if (!prevdash && sb.Length > 0)
            {
                sb.Append('-');
                prevdash = true;
            }
        }
        else if ((int)c >= 128)
        {
            int prevlen = sb.Length;
            sb.Append(RemapInternationalCharToAscii(c));
            if (prevlen != sb.Length) prevdash = false;
        }
        if (i == maxlen) break;
    }

    if (prevdash)
        return sb.ToString().Substring(0, sb.Length - 1);
    else
        return sb.ToString();
}

To see the previous version of the code this replaced (but is functionally equivalent to, and 5x faster), view revision history of this post (click the date link).

link|improve this answer
8  
It would be nice with a version that doesn't just drop accented characters like åäö but instead deaccentuate them to aao... ^^ – Oskar Duveborn Nov 16 '09 at 20:48
4  
@oskar the stub of that RemapInternationalCharToAscii() function is there meta.stackoverflow.com/questions/7435/… – Jeff Atwood Mar 15 '11 at 3:25
2  
This is great. The only change I have made so far is to change "if (i == maxlen) break;" to become "if (sb.Length == maxlen) break;" just in case there are lots of invalid characters in the string I am passing in. – Dommer May 30 '11 at 18:21
In my case I also had to replace '<' and '>' by something like 'lt' and 'gt'. This is because I have product names like 'xyz>50%' and 'xyz<50%', which would result in the same friendly name but are two different products. – Lud Dec 28 '11 at 15:28
feedback

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.

Edit

Sorry, 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
link|improve this answer
feedback

For good measure, here's the PHP function in WordPress that does it... I'd think that WordPress is one of the more popular platforms that uses fancy links.

    function sanitize_title_with_dashes($title) {
            $title = strip_tags($title);
            // Preserve escaped octets.
            $title = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', '---$1---', $title);
            // Remove percent signs that are not part of an octet.
            $title = str_replace('%', '', $title);
            // Restore octets.
            $title = preg_replace('|---([a-fA-F0-9][a-fA-F0-9])---|', '%$1', $title);
            $title = remove_accents($title);
            if (seems_utf8($title)) {
                    if (function_exists('mb_strtolower')) {
                            $title = mb_strtolower($title, 'UTF-8');
                    }
                    $title = utf8_uri_encode($title, 200);
            }
            $title = strtolower($title);
            $title = preg_replace('/&.+?;/', '', $title); // kill entities
            $title = preg_replace('/[^%a-z0-9 _-]/', '', $title);
            $title = preg_replace('/\s+/', '-', $title);
            $title = preg_replace('|-+|', '-', $title);
            $title = trim($title, '-');
            return $title;
    }

This function as well as some of the supporting functions can be found in wp-includes/formatting.php.

link|improve this answer
feedback

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.

link|improve this answer
feedback

You can also use this javascript function for in-form generation of the slug's (This one is based on/copied from Django):

function makeSlug(urlString, filter) {
    // changes, e.g., "Petty theft" to "petty_theft"
    // remove all these words from the string before urlifying

if(filter) {
    removelist = ["a", "an", "as", "at", "before", "but", "by", "for", "from",
    "is", "in", "into", "like", "of", "off", "on", "onto", "per",
    "since", "than", "the", "this", "that", "to", "up", "via", "het", "de", "een", "en",
    "with"];
} else {
    removelist = [];
}
s = urlString;
r = new RegExp('\\b(' + removelist.join('|') + ')\\b', 'gi');
s = s.replace(r, '');
s = s.replace(/[^-\w\s]/g, ''); // remove unneeded chars
s = s.replace(/^\s+|\s+$/g, ''); // trim leading/trailing spaces
s = s.replace(/[-\s]+/g, '-'); // convert spaces to hyphens
s = s.toLowerCase(); // convert to lowercase
return s;// trim to first num_chars chars

}

link|improve this answer
feedback

no, no, no. you are all so very wrong. Except for the diacritics-fu stuff, you're getting there, but what about asian characters (shame on ruby developers for not considering their nihonjin brethren)

firefox and safari both display non-ascii characters in the url, and frankly they look great. It is nice to support links like 'http://somewhere.com/news/read/お前たちはアホじゃないかい'

so here's some PHP code that'll do it, but I just wrote it, and haven't stress tested it.

<?php

function slug($str)
{
  $args = func_get_args();
  array_filter($args);  //remove blanks
  $slug = mb_strtolower(implode('-', $args));

  $real_slug = '';
  $hyphen = '';
  foreach(SU::mb_str_split($slug) as $c)
  {
    if (strlen($c) > 1 && mb_strlen($c)===1)
    {
      $real_slug .= $hyphen . $c;
      $hyphen = '';
    }
    else
    {
      switch($c)
      {
        case '&':
          $hyphen = $real_slug ? '-and-' : '';
          break;
        case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g': case 'h': case 'i': case 'j': case 'k': case 'l': case 'm':
        case 'n': case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u': case 'v': case 'w': case 'x': case 'y': case 'z':
        case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G': case 'H': case 'I': case 'J': case 'K': case 'L': case 'M':
        case 'N': case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U': case 'V': case 'W': case 'X': case 'Y': case 'Z':
        case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9':
          $real_slug .= $hyphen . $c;
          $hyphen = '';
          break;
        default:
          $hyphen = $hyphen ? $hyphen : ($real_slug ? '-' : '');
      }
    }
  }

  return $real_slug;
}

Example:

$str = "~!@#$%^&*()_+-=[]\{}|;':\",./<>?\n\r\t\x07\x00\x04 コリン ~!@#$%^&*()_+-=[]\{}|;':\",./<>?\n\r\t\x07\x00\x04 トーマス ~!@#$%^&*()_+-=[]\{}|;':\",./<>?\n\r\t\x07\x00\x04 アーノルド ~!@#$%^&*()_+-=[]\{}|;':\",./<>?\n\r\t\x07\x00\x04";
echo slug($str);

Outputs: コリン-and-トーマス-and-アーノルド

the '-and-' is because &'s get changed to '-and-'.

link|improve this answer
feedback

On my LAMP sites I use the mod_rewrite function in .htaccess

Read more here: http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html

link|improve this answer
feedback

I don't much about Ruby or Rails, but in Perl, this is what I would do:

my $title = "How do you change a title to be part of the url like Stackoverflow?";

my $url = lc $title;   # Change to lower case and copy to URL.
$url =~ s/^\s+//g;     # Remove leading spaces.
$url =~ s/\s+$//g;     # Remove trailing spaces.
$url =~ s/\s+/\-/g;    # Change one or more spaces to single hyphen.
$url =~ s/[^\w\-]//g;  # Remove any non-word characters.

print "$title\n$url\n";

I just did a quick test and it seems to work. Hopefully this is relatively easy to translate to Ruby.

link|improve this answer
feedback

Assuming that your model class has a title attribute, you can simply override the to_param method within the model, like this:

def to_param
  title.downcase.gsub(/ /, '-')
end

This Railscast episode has all the details. You can also ensure that the title only contains valid characters using this:

validates_format_of :title, :with => /^[a-z0-9-]+$/,
                    :message => 'can only contain letters, numbers and hyphens'
link|improve this answer
feedback

Brian's code, in Ruby:

title.downcase.strip.gsub(/\ /, '-').gsub(/[^\w\-]/, '')

downcase turns the string to lowercase, strip removes leading and trailing whitespace, the first gsub call globally substitutes spaces with dashes, and the second removes everything that isn't a letter or a dash.

link|improve this answer
feedback

There is a small Rails plugin called PermalinkFu, that does this.

The escape method does the transformation into a string that is suitable for a url. Have a look at the code, that method is quite simple.

To remove non-ascii chars it uses the iconv lib to translate to 'ascii//ignore//translit' from 'utf-8'. Spaces are then turned into dashes, everything is downcased etc.

link|improve this answer
feedback

T-SQL implementation, adapted from dbo.UrlEncode:

CREATE FUNCTION dbo.Slug(@string varchar(1024))
RETURNS varchar(3072)
AS
BEGIN
	DECLARE @count int, @c char(1), @i int, @slug varchar(3072)

	SET @string = replace(lower(ltrim(rtrim(@string))),' ','-')

	SET @count = Len(@string)
	SET @i = 1
	SET @slug = ''

	WHILE (@i <= @count)
	BEGIN
		SET @c = substring(@string, @i, 1)

		IF @c LIKE '[a-z0-9--]'
			SET @slug = @slug + @c

		SET @i = @i +1
	END

	RETURN @slug
END
link|improve this answer
feedback

If you are using Rails edge, you can rely on Inflector.parametrize - here's the example from the documentation:

  class Person
    def to_param
      "#{id}-#{name.parameterize}"
    end
  end

  @person = Person.find(1)
  # => #<Person id: 1, name: "Donald E. Knuth">

  <%= link_to(@person.name, person_path(@person)) %>
  # => <a href="/person/1-donald-e-knuth">Donald E. Knuth</a>

Also if you need to handle more exotic characters such as accents (éphémère) in previous version of Rails, you can use a mixture of PermalinkFu and DiacriticsFu:

DiacriticsFu::escape("éphémère")
=> "ephemere"

DiacriticsFu::escape("räksmörgås")
=> "raksmorgas"

cheers!

Thibaut

--

http://blog.logeek.fr

link|improve this answer
2  
Mmm, räksmörgås! – bzlm Mar 22 '09 at 10:31
hehe - I love those funny comments :) – Thibaut Barrère Mar 25 '09 at 0:12
feedback

Here is my version of Jeff's code. I've made the following changes:

  • The hypens were appended in such a way that one could be added, and then need removing as it was the last character in the string. i.e. We never want “my-slug-”. This means an extra string allocation to remove it on this edge case. I’ve worked around this by delay-hyphening. If you compare my code to Jeff’s the logic for this is easy to follow.
  • His approach is purely lookup based and missed a lot of characters I found in examples whilst researching on stack overflow. To counter this, I first peform a normalisation pass (aka collation mentioned on this question Non US-ASCII characters dropped from full (profile) URL), and then ignore any characters outside the acceptible ranges. This works most of the time...
  • ... For when it doesn’t I’ve also had to add a lookup table. As mentioned above, some characters don’t map to a low ascii value when normalised. Rather than drop these I’ve got a manual list of exceptions that is doubtless full of holes, but better than nothing. The normalisation code was inspired by Jon Hanna’s great post on this question How can I remove accents on a string?.
  • The case conversion is now also optional.

    public static class Slug
    {
        public static string Create(bool toLower, params string[] values)
        {
            return Create(toLower, String.Join("-", values));
        }
    
    /// <summary>
    /// Creates a slug.
    /// References:
    /// http://www.unicode.org/reports/tr15/tr15-34.html
    /// http://meta.stackoverflow.com/questions/7435/non-us-ascii-characters-dropped-from-full-profile-url/7696#7696
    /// http://stackoverflow.com/questions/25259/how-do-you-include-a-webpage-title-as-part-of-a-webpage-url/25486#25486
    /// http://stackoverflow.com/questions/3769457/how-can-i-remove-accents-on-a-string
    /// </summary>
    /// <param name="toLower"></param>
    /// <param name="normalised"></param>
    /// <returns></returns>
    public static string Create(bool toLower, string value)
    {
        if (value == null) return "";
    
        var normalised = value.Normalize(NormalizationForm.FormKD);
    
        const int maxlen = 80;
        int len = normalised.Length;
        bool prevDash = false;
        var sb = new StringBuilder(len);
        char c;
    
        for (int i = 0; i < len; i++)
        {
            c = normalised[i];
            if ((c >= 'a' && c <= 'z') || (c >= '0' && c <= '9'))
            {
                if (prevDash)
                {
                    sb.Append('-');
                    prevDash = false;
                }
                sb.Append(c);
            }
            else if (c >= 'A' && c <= 'Z')
            {
                if (prevDash)
                {
                    sb.Append('-');
                    prevDash = false;
                }
                // tricky way to convert to lowercase
                if (toLower)
                    sb.Append((char)(c | 32));
                else
                    sb.Append(c);
            }
            else if (c == ' ' || c == ',' || c == '.' || c == '/' || c == '\\' || c == '-' || c == '_' || c == '=')
            {
                if (!prevDash && sb.Length > 0)
                {
                    prevDash = true;
                }
            }
            else
            {
                string swap = ConvertEdgeCases(c, toLower);
    
                if (swap != null)
                {
                    if (prevDash)
                    {
                        sb.Append('-');
                        prevDash = false;
                    }
                    sb.Append(swap);
                }
            }
    
            if (i == maxlen) break;
        }
    
        return sb.ToString();
    }
    
    static string ConvertEdgeCases(char c, bool toLower)
    {
        string swap = null;
        switch (c)
        {
            case 'ı':
                swap = "i";
                break;
            case 'ł':
                swap = "l";
                break;
            case 'Ł':
                swap = toLower ? "l" : "L";
                break;
            case 'đ':
                swap = "d";
                break;
            case 'ß':
                swap = "ss";
                break;
            case 'ø':
                swap = "o";
                break;
            case 'Þ':
                swap = "th";
                break;
        }
        return swap;
    }
    }
    

For more details, the unit tests, and an explanation of why facebooks url scheme is a little smarter than Stack Overflows I've got an expanded version of this on my blog. Hope that it is ok to link it here:

http://www.danharman.net/2011/07/18/seo-slugification-in-dotnet-aka-unicode-to-ascii-aka-diacritic-stripping/

link|improve this answer
+1 This is great Dan. I also added a comment on your blog about possibly changing if (i == maxlen) break; to be if (sb.Length == maxlen) break; instead so that if you pass in a string with a lot of whitespace/invalid characters you can still get a slug of the desired length, whereas the code as it stands might end up massively truncating it (e.g. consider the case where you start with 80 spaces...). And a rough benchmark of 10,000,000 iterations against Jeff's code showed it to be roughly the same speed. – Dommer Nov 17 '11 at 23:34
feedback

What about funny characters? What are you going to do about those? Umlauts? Punctuation? These need to be considered. Basically, I would use a white-list approach, as opposed to the black-list approaches above: Describe which characters you will allow, which characters you will convert (to what?) and then change the rest to something meaningfull (""). I doubt you can do this in one regex... Why not just loop through the characters?

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.