Code om een tekst uiteen te
rafelen in afzonderlijke woorden de dubbels eruit te halen en de woorden te
sorteren.
In de huidige code worden enkel de volgende tekens weggeflterd. Indien je ook andere tekens wil elimineren moet fe deze code aanpassen :
var chars = new Array(''','<','>','-','(',')','{','}','"','.','?','¿','¡','!',':',';',',');
De volledige code kan je copieëren in de hier onderstaande tabel.Wil je een werkend voorbeeld thuis op je pc copieer dan de code,plak deze in je kladblok en je bewaart het bestand als een HTML - bestand.
Test de code ::
druk hier
Javascript that separates all the
words in a text , deletes the duplicates and sorts the remaining words.
In the current code, only the following characters are filtered. If you want to
filter other characters out of the result, you must adapt the following code :
var chars = new Array (''','<','>','-','(',')','{','}','"','.','?',
'¿','¡','!',':',';',',');
You can copy the full code in the table below..
Test the code here:
Click here
Javascript que separa todas las
palabras en un texto, elimina los duplicados y ordenar todas las palabras.
En el código actual, sólo los siguientes caracteres son filtrados. Si no desea otros caracteres en el resultado, usted debe adaptar el siguiente código:
var caracteres = new Array (''','<','>','-','(',')','{','}','"','.','?',
'¿','¡','!',':',';',',');
Puede copiar el código completo en el cuadro que figura a continuación
..
Probar el código aquí:
Click aqui
|