Namespace
The input sentence to tokenize.
An array of words in the sentence.
const sentence = "The quick brown fox jumps over the lazy dog";
const words = StringUtils.tokenizeSentence(sentence);
console.log(words);
// Output: ["The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"]
Generated using TypeDoc
StringUtils
Tokenize a sentence into words.