My input file is a comma delimited file and it looks like this,
a1234,123,345,1200,
b1234,123,345,19000,
c1234,123,345,1,
Sometimes, I may junk data in the input file like this
a1234,123,345,1200,
b1234,12fgdhg#$#%#$^$%&&
c1234,123,345,1,
If i get a junk data, I need to move the junk values to a separate file and process the rest of data in my program.
Junk Output file :
b1234,12fgdhg#$#%#$^$%&&
I use unstring in my program to handle the comma seperated input file. Is it possible to move the junk data to a seperate file???Can someone help me out in this ??