I need to validate input to my application. The input is a formatted string that may contain parts of a Date, e.g.:
{0:yy}{0:MM}{0:dd}_{0:hh}{0:mm}{0:ss}-SOME OTHER TEXT
sometext{0:yyyy}{0:MM}{0:dd}mORETEXT
The input doesn't have to contain those parts of a date, but if it does, I need them to be valid format items that can be used by String.Format() method. I believe I should validate using Regular Expressions, but I am not good at it. 
Could you please help?

