Find all matches
suggest changeUsing
using System.Text.RegularExpressions;
Code
static void Main(string[] args) { string input = "Carrot Banana Apple Cherry Clementine Grape"; // Find words that start with uppercase 'C' string pattern = @"\bC\w*\b"; MatchCollection matches = Regex.Matches(input, pattern); foreach (Match m in matches) Console.WriteLine(m.Value); }
Output
Carrot Cherry Clementine
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents