titulo: El niño más hermoso en acción
me queda: EL-NI-O-MAS-HERMOSO-EN-ACCI-N
Este es mi código:
Using perl Syntax Highlighting
- sub urlConverter {
- my $selft = shift;
- my $titulo = uc(shift);
- $titulo = textoEncoded($titulo);
- $titulo =~ tr/áéíóúñÁÉÍÓÚÑÂÊÎÔÛâêîôûÄËÏÖÜäëïöü/AEIOUNAEIOUNAEIOUAEIOUAEIOUAEIOU/;
- $titulo =~ s/\W/-/g;
- $titulo =~ s/-{2,}/-/g;
- $titulo =~ s/^(-)(.*)(-)$/$2/;
- return $titulo ;
- }
- sub textoEncoded {
- my $texto = shift;
- $texto = decode_entities($texto);
- utf8::decode($texto);
- return $texto;
- }
Coloreado en 0.002 segundos, usando GeSHi 1.0.8.4
Gracias.