Skip to content

Instantly share code, notes, and snippets.

@januprasad
Created November 28, 2018 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save januprasad/8e4f2a8f520e0f8839bbe8e23496ac04 to your computer and use it in GitHub Desktop.
Save januprasad/8e4f2a8f520e0f8839bbe8e23496ac04 to your computer and use it in GitHub Desktop.
private List<String> stringToWords(String mnemonic) {
List<String> words = new ArrayList<>();
for (String w : mnemonic.trim().split(" ")) {
if (w.length() > 0) {
words.add(w);
}
}
return words;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment