I have this file and I don't know how to parse the text like that:
[1]
Word => 'THE'
USED => 53097401461
[2]
Word => 'OF'
USED => 30966074232
And then I have to search the TOP Xs words in use. (X is a parameter)
This is my JavaScript:
$.get("https://gist.githubusercontent.com/zach-karat/119d690176f324e3f99c0e312f0a6620/raw/82e14d739e966216536ae9806282a20343e0e2f8/google-books-common-words.txt", function(data, status){
// Thats works once at the time but with letters and not with numbers!
//var hasString = data.includes("HELLO");
var content = data;
$('#content').html(data.replace('\n','<br>'));
});
});
}, 'html');
EDIT:
The words on the file are sorted so I edited my code to this:(NOW...It is posible to know the TOP10 words in use that has 3 words of length?)
$.get("https://gist.githubusercontent.com/zach-karat/119d690176f324e3f99c0e312f0a6620/raw/82e14d739e966216536ae9806282a20343e0e2f8/google-books-common-words.txt", function(data, status,){
var lines = data.split("\n");
var x = 0;
$.each(lines, function(n, elem) {
// append if lenght > 10
$('#content').append('<div>' + elem + '</div>');
x ++;
if(x == 10){//x => parameter
return false;
}
});
});
});
}, 'html');