General file Reader.

Unfortunatelly some data have very strange formats, and although they are human readable, they require a specific parser. Is there a project to allow a general model file parser that could use some Java code to return a Knime formated table? For instance lets assume the following table:

PlateID:G3132

;01;02;03;04;05;06;07;08
A;1;1;1;1;1;1;1;1
B;1;1;1;1;1;1;1;1
C;1;1;1;1;1;1;1;1
D;1;1;1;1;1;1;1;1
E;1;1;1;1;1;1;1;1
F;1;1;1;1;1;1;1;1
G;1;1;1;1;1;1;1;1
H;1;1;1;1;1;1;1;1

parese into:

PlateID;Row;Col;Value
G3132;A;01;1
G3132;A;02;1

G3132;B;01;1
G3132;B;02;1