I need to generate a regex to match any string with this structure:
{"anyWord"}{"aSpace"}{"-"}{"anyLetter"} 
How can I do it?
Thanks
EDIT
I have tried:
  string txt="print -c";
  string re1="((?:[a-z][a-z]+))";   // Word 1
  Regex r = new Regex(re1,RegexOptions.IgnoreCase|RegexOptions.Singleline);
  Match m = r.Match(txt);
  if (m.Success)
  {
        String word1=m.Groups[1].ToString();
        Console.Write("("+word1.ToString()+")"+"\n");
  }
  Console.ReadLine();
but this only matches the word "print"
 
    
