Generate a dash separated seo friendly URL from title in JavaScript
Use a global replace with \W+ option ( \W+ means any sequence of non-word characters)
private generateDashBasedUrlPathFromTitle(title: string) {
return title.trim().replace(/\W+/g, '-').toLowerCase();
}
Shared with from Codever.
👉 Use the Copy to mine
functionality to copy this snippet to your own personal collection and easy manage
your code snippets.
Codever is open source on Github ⭐🙏