// URL that generated this code:
// http://txt2re.com/index-jsharp.php3?s=08:Nov:2018%20%22This%20is%20an%20Example!%22&18&-1
package ConsoleApplication1;
import System.Text.RegularExpressions.*;
public class Program
{
public static void main(String[] args)
{
  String txt="08:Nov:2018 \"This is an Example!\"";
  String re1=".*?"; // Non-greedy match on filler
  String re2="(\"This is an Example!\")"; // Double Quote String 1
  String re3="((?:[a-z][a-z0-9_]*))"; // Variable Name 1
  Regex r = new Regex(re1+re2+re3,RegexOptions.IgnoreCase|RegexOptions.Singleline);
  Match m = r.Match(txt);
  if (m.get_Success())
  {
  String string1=m.get_Groups().get_Item(1).toString();
  String var1=m.get_Groups().get_Item(2).toString();
  System.Console.Write("("+string1.toString()+")"+"("+var1.toString()+")"+"\n");
  }
System.Console.Read();
}
}
//-----
// Paste the code into a new Console Application
//-----