Extract the first N words from a string with C#

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();

Posted

in

by

Tags: