GeekZilla
Cleaning a string using a regular expression ready for placing in a URL
public static string CleanForUrl(string text) { return Regex.Replace(text, @"[^a-z^A-Z^0-9^-]", "-"); }
Author Paul Hayman
Paul is the COO of kwiboo ltd and has more than 20 years IT consultancy experience. He has consulted for a number of blue chip companies and has been exposed to the folowing sectors: Utilities, Telecommunications, Insurance, Media, Investment Banking, Leisure, Legal, CRM, Pharmaceuticals, Interactive Gaming, Mobile Communications, Online Services.
Paul is the COO and co-founder of kwiboo (http://www.kwiboo.com/) and is also the creator of GeekZilla.
Comments
rsuples
said:
love this solution thanks
silmaril
said:
very nice solution.
I added below to trim double dashes for more clean url
while (pUrl.Contains("--"))
{
pUrl = pUrl.Replace("--", "-");
}