xxxxxxxxxx
49
let str = "";
let p;
let words = [];
function preload(){
//loadStrings work by splitting line breaks
//define function of 'process' once strings are loaded
loadStrings('turkey.txt', process);
}
function setup() {
noCanvas();
p = createP();
}
function draw() {
if (frameCount % 30 == 1) {
str += random(words) + ' ';
p.html(str);
}
}
function process(lines){
//console.log(lines);
//run through each line in all of the lines
for(let line of lines){
//words = take the words from each line
let tokens = splitTokens(line);
words.push(tokens);
//for (let token of tokens) words.push(token);
}
for(let word of words){
// //word is trimmed and lower case but not updated
// word.trim();
// word.toLowerCase();
}
//run through index number in words --> check and replace puntuactions
for(let w in words){
let word = words[w];
word = word.trim();
word = word.toLowerCase();
word = word.replace(/[-_:;?!(),.]/g,'');
words[w] = word;
}
}