in reply to How do i compare dates with format dd.mm.yy

It depends on how you want to compare them.

If you just want to check which is later, reverse the order of the parts, i.e. yy.mm.dd. (Make sure you keep all fields fixed width, i.e. zero padded if necessary.)

Then simply compare them as strings! However, you are likely to run into the "Y2K" problem, since your years are only two digits.