Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 35279
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T14:12:40+00:00 2026-05-10T14:12:40+00:00

How can I go about generating a Friendly URL in C#? Currently I simple

  • 0

How can I go about generating a Friendly URL in C#? Currently I simple replace spaces with an underscore, but how would I go about generating URL’s like Stack Overflow?

For example how can I convert:

How do I generate a Friendly URL in C#?

Into

how-do-i-generate-a-friendly-url-in-C

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T14:12:40+00:00Added an answer on May 10, 2026 at 2:12 pm

    There are several things that could be improved in Jeff’s solution, though.

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

    IMHO, not the place to test this. If the function gets passed an empty string, something went seriously wrong anyway. Throw an error or don’t react at all.

    // remove any leading or trailing spaces left over … muuuch later: // remove trailing dash, if there is one 

    Twice the work. Considering that each operation creates a whole new string, this is bad, even if performance is not an issue.

    // 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,}', '-'); 

    Again, basically twice the work: First, use regex to replace multiple spaces at once. Then, use regex again to replace multiple dashes at once. Two expressions to parse, two automata to construct in memory, iterate twice over the string, create two strings: All these operations can be collapsed to a single one.

    Off the top of my head, without any testing whatsoever, this would be an equivalent solution:

    // make it all lower case title = title.ToLower(); // remove entities title = Regex.Replace(title, @'&\w+;', ''); // remove anything that is not letters, numbers, dash, or space title = Regex.Replace(title, @'[^a-z0-9\-\s]', ''); // replace spaces title = title.Replace(' ', '-'); // collapse dashes title = Regex.Replace(title, @'-{2,}', '-'); // trim excessive dashes at the beginning title = title.TrimStart(new [] {'-'}); // if it's too long, clip it if (title.Length > 80)     title = title.Substring(0, 79); // remove trailing dashes title = title.TrimEnd(new [] {'-'}); return title; 

    Notice that this method uses string functions instead of regex functions and char functions instead of string functions whenever possible.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How would I go about generating a unique receipt number in the following range:
When generating java beans from xsd files I would like to have the default
Can someone recommend a UML modelling toolfor QNX? I'm not bothered about generating code
As per http://www.vmware.com/support/esx15/doc/esx15_runvm5.html , how would one go about generating the UUID format that
a minor question but it's driving me nuts. I'm programatically generating about 50 DDLs
Folks, I'd like to create some T4 templates for generating class files (about 7
Can anybody tell me about Generation of Garbage Collector in .net ?
As a relative newbie I try to read as much as I can about
You can read about the 64-bit calling convention here . x64 functions are supposed
can anyone point to a site or describe how I can go about designing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.