forked from Laboratoria/DEV015-text-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalyzer.js
51 lines (51 loc) · 2.12 KB
/
analyzer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const analyzer = {
//TODO: esta función debe retornar el recuento de palabras que se encuentran en el parámetro text de tipo string.
getWordCount: (textoFinal) => {
const words = textoFinal
.trim()
.split(/\s+/)
.filter((word) => word.length > 0);
const wordsCount = words.length;
return wordsCount;
},
//TODO: esta función debe retornar el recuento de caracteres que se encuentran en el parámetro text de tipo string.
getCharacterCount: (textoFinal) => {
const ccaracteres = textoFinal;
const caracteresFinales = ccaracteres.length;
return caracteresFinales;
},
//TODO: esta función debe retornar el recuento de caracteres excluyendo espacios y signos de puntuación que se encuentran en el parámetro text de tipo string.
getCharacterCountExcludingSpaces: (textoFinal) => {
const caracteresSEN = textoFinal.replace(/\W/g, "");
const caracteresSENR = caracteresSEN.length;
return caracteresSENR;
},
//TODO: esta función debe retornar cúantos números se encuentran en el parámetro text de tipo string.
getNumberCount: (textoFinal) => {
const numberosc = textoFinal.match(/\d+(\.\d+)?(?!\w)/g) || [];
const numerosR = numberosc.length;
return numerosR;
},
//TODO: esta función debe retornar la suma de todos los números que se encuentran en el parámetro text de tipo string.
getNumberSum: (textoFinal) => {
const sumaNumeros = textoFinal.match(/\d+(\.\d+)?(?!\w)/g);
let sumaNumerosR = 0;
if (sumaNumeros) {
for (let i = 0; i < sumaNumeros.length; i++) {
sumaNumerosR = sumaNumerosR + parseFloat(sumaNumeros[i]);
}
}
const sumaFinal = Number(sumaNumerosR);
return sumaFinal;
},
//TODO: esta función debe retornar la longitud media de palabras que se encuentran en el parámetro text de tipo string.
getAverageWordLength: (textoFinal) => {
const longitudP = textoFinal.split(" ");
let longitudR = 0;
for (let i = 0; i < longitudP.length; i++) {
longitudR = longitudR + longitudP[i].length;
}
return parseFloat((longitudR / longitudP.length).toFixed(2));
},
};
export default analyzer;