This code will return the first 5 words, change the number in the regular expression as needed:
string testString = "The quick brown fox jumps over the lazy dog."
string firstWords = Regex.Match(testString, @"^(\w+\b.*?){5}") site link.ToString();
This code will return the first 5 words, change the number in the regular expression as needed:
string testString = "The quick brown fox jumps over the lazy dog."
string firstWords = Regex.Match(testString, @"^(\w+\b.*?){5}") site link.ToString();