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