public static StringView GetWordAt(this StringView str, int wordIndex) { return(str.GetWords().YieldItemAt(wordIndex)); }
public static IEnumerable <StringView> GetWords(this StringView str) { return(str.GetWords(ChrCategory.WhitespacePredicate)); }