Last active
August 26, 2024 16:02
-
-
Save djabif/b8d21c4ebcef51db7a4a28ecf3d41846 to your computer and use it in GitHub Desktop.
Angular Pipe to transform a string into a slug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Pipe, PipeTransform } from '@angular/core'; | |
@Pipe({name: 'slugify'}) | |
export class SlugifyPipe implements PipeTransform { | |
transform(input: string): string { | |
return input.toString().toLowerCase() | |
.replace(/\s+/g, '-') // Replace spaces with - | |
.replace(/[^\w\-]+/g, '') // Remove all non-word chars | |
.replace(/\-\-+/g, '-') // Replace multiple - with single - | |
.replace(/^-+/, '') // Trim - from start of text | |
.replace(/-+$/, ''); // Trim - from end of text | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { SlugifyPipe } from '../../shared/slugify.pipe'; | |
//remember to add this pipe as a module provider. In my case it is declared as a provider in my SharedModule | |
@Component({ | |
//... | |
}) | |
export class YourComponent{ | |
constructor(private slugifyPipe: SlugifyPipe){} | |
slugify(input: string){ | |
var your_new_slug = this.slugifyPipe.transform(input); | |
} | |
} |
This is amazing, exactly what I needed! Can't believe this doesn't come with Angular by default 🤔 Thank you!
Thanks 😍
Thank you!
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'slugify',
})
export class SlugifyPipe implements PipeTransform {
transform(value: string): string {
return value
.toLowerCase()
.replace(/[àÀáÁâÂãäÄÅåª]+/g, 'a') // Special Characters #1
.replace(/[èÈéÉêÊëË]+/g, 'e') // Special Characters #2
.replace(/[ìÌíÍîÎïÏ]+/g, 'i') // Special Characters #3
.replace(/[òÒóÓôÔõÕöÖº]+/g, 'o') // Special Characters #4
.replace(/[ùÙúÚûÛüÜ]+/g, 'u') // Special Characters #5
.replace(/[ýÝÿŸ]+/g, 'y') // Special Characters #6
.replace(/[ñÑ]+/g, 'n') // Special Characters #7
.replace(/[çÇ]+/g, 'c') // Special Characters #8
.replace(/[ß]+/g, 'ss') // Special Characters #9
.replace(/[Ææ]+/g, 'ae') // Special Characters #10
.replace(/[Øøœ]+/g, 'oe') // Special Characters #11
.replace(/[%]+/g, 'pct') // Special Characters #12
.replace(/\s+/g, '-') // Replace spaces with -
.replace(/[^\w\-]+/g, '') // Remove all non-word chars
.replace(/\-\-+/g, '-') // Replace multiple - with single -
.replace(/^-+/, '') // Trim - from start of text
.replace(/-+$/, ''); // Trim - from end of text
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is amazing, exactly what I needed! Can't believe this doesn't come with Angular by default 🤔 Thank you!