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

Ask A Question

Stats

  • Questions 97k
  • Answers 97k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It has a Dictionary: Does VBA have Dictionary Structure? And… May 11, 2026 at 7:24 pm
  • Editorial Team
    Editorial Team added an answer s/(.{70}[^\s]*)\s+/$1\n/ Consume the first 70 characters, then stop at the… May 11, 2026 at 7:24 pm
  • Editorial Team
    Editorial Team added an answer Windows authentication is poorly named (IMO). It's not using Windows… May 11, 2026 at 7:24 pm

Related Questions

I need to programmatically store data on the client side without having to transfer
I have a winform data entry and retrieval program called CaseNotes. This has a
This is NOT a question on plain old boring customization; I actually want to
I am writing a web app using TurboGears, and in that app the users

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.