using System; using System.Text.RegularExpressions; class Demo { public static void Main() { string pattern = @"\B@\w+"; foreach (var match in Regex.Matches(@"@help me@ ple@se @now", pattern)) Console.WriteLine(match); } }