I have a String like this:
"WAIT_UNTIL;SYSTEM_TIME >= Di 15 Sep 2009 23:00:21 and IgnKeyPos ==3"
or something like this
"IF;Thermal >=20 and SYSTEM_TIME >= Tue 16 Sep 2009 23:00:21 "
I need to extract only the Time and Date part so I can use it later like this:
TimeThen = DateTime.Parse("Di 15 Sep 2009 23:00:21");
How should I start ?