=DATE(2000+LEFT(RIGHT(C10,15),2),LEFT(RIGHT(C10,21),2),LEFT(RIGHT(C10,18),2))
it's a bit brute force but seems to work. assumes your format is MM-DD-YY (i'm guessing the example is today's date). Change the cell reference to wherever you want to, of course.
Or, if you want to be incredibly precise (this looks for the first hyphen and then works sideways from there)
=date(2000+LEFT(RIGHT(C10,LEN(C10)-FIND("-",C10)-3),2),LEFT(RIGHT(C10,LEN(C10)-FIND("-",C10)+3),2),LEFT(RIGHT(C10,LEN(C10)-FIND("-",C10)),2))
Yes, I need to get out more.