Simple Slug / Clean URL generator helper for Microsoft .NET framework and .NET Standard.
With default settings, you will get an hyphenized, lowercase, alphanumeric version of any string you please, with any diacritics removed and collapsed whitespace, collapsed dashes and trimmed whitespace.
A version for .net core
Slug: is the part of an URL which identifies a page using human-readable keywords.
This extension for string type adds the Slugify method for generating slugs from any language. This extension method is useful for SEO friendly Urls.
Usage examples:
"Hello...
More information
SluggyUnidecode is a powerful slugifier designed to create friendly URL's. Simple and powerful.
Extends the Sluggy package by using the Unidecode.Net library for normalization.
Slug: is the part of an URL which identifies a page using human-readable keywords.
This extension for string type adds the Slugify method for generating slugs from any language. This extension method is useful for SEO friendly Urls.
Usage examples:
"Hello World!".Slugify(); // hello-world
"مرحبا...
More information