Skip to content

Instantly share code, notes, and snippets.

@ckob
Created April 13, 2016 15:16
Show Gist options
  • Save ckob/cf9a570b584cc51c455ab7d3c737339c to your computer and use it in GitHub Desktop.
Save ckob/cf9a570b584cc51c455ab7d3c737339c to your computer and use it in GitHub Desktop.
public int countWords() {
int totalWords=0;
for (String s : strFitxer) {
for (String i : s.split(" ")) {
if (!i.isEmpty()) {
totalWords++;
}
}
}
return totalWords;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment