I have a file of 3 fields:
123710337783,351898014413150,123028040249634
123710337785,352934028758390,123028040109275
I need to check that the fields meet the following lengths:
Field 1 = 12
Field 2 = 15 or 16
Field 3 = 15
I get an error when running this:
awk -F, '{if(length($2) == 15 ) || length($2) == 16) && length($1) == 12 && length($3)) == 15) print }'
Please assist.
Bernie