show/hide this revision's text 2 new version

Here's how we do it. Note that there are probably more edge conditions than you realize at first glance.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.

// remove entitiesto lowercase, trim extra spacestitle = Regex.Replace(title, @"&\w+;", "");// remove anything that is not letters, numbers, dash, or spacetitle = Regex.Replace(titleentityRegex.Replace(title, @"[^A-Za-z0-9\-\s]", "");// remove any leading or trailing spaces left overtitle var len = title.Trim()title.Length;// replace spaces with single dashtitle var sb = Regex.Replace(title, @"\s+", "-");// new StringBuilder(len);bool prevdash = false;char c;for (int i = 0; i < title.Length; i++) c = title[i]; if we end up with multiple dashes, collapse to single dash title (c =Regex.Replace(title, @"\-{2,}", "-");// make it all lower casetitle = title.ToLower()' ' || c == ',' || c == '.' || c == '/' || c == '\\' || c == '-') if (!prevdash) sb.Append('-'); // prevdash = true; else if it's too long, clip it((c >= 'a' && c <= 'z') || (c >= '0' && c <= '9')) sb.Append(c); prevdash = false; if (title.Length > i == 80) break;title = title.Substring(0, 79)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).

show/hide this revision's text 1

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

if (String.IsNullOrEmpty(title)) return "";

// remove entities
title = Regex.Replace(title, @"&\w+;", "");
// remove anything that is not letters, numbers, dash, or space
title = Regex.Replace(title, @"[^A-Za-z0-9\-\s]", "");
// remove any leading or trailing spaces left over
title = title.Trim();
// replace spaces with single dash
title = Regex.Replace(title, @"\s+", "-");
// if we end up with multiple dashes, collapse to single dash            
title = Regex.Replace(title, @"\-{2,}", "-");
// make it all lower case
title = title.ToLower();
// if it's too long, clip it
if (title.Length > 80)
    title = title.Substring(0, 79);
// remove trailing dash, if there is one
if (title.EndsWith("-"))
    title = title.Substring(0, title.Length - 1);
return title;