Dear All,
I have a data like this in different files
File 1
A B C D E F G H I G H - J
A B C D E - F G H K L M N J
File 2
L M N P Q R L S T V G H I
M N O P Q R M N T Y G H I
Now I want a expression by which I can store a particular position in a variable i.e Position No. 9 in file one correspond to E in both lines
And Position No. 9 in File 2 is P in both lines as this file have an empty column
I now I can easily extract a column by using
my ($M, $N, $P) = @data[6,7,8];
for column number 6 7 and 8 etc. But here I want
my $variable = position number 9 in data file (does not matter what is at this position, i.e number, letter or space)
I have a data like this in different files
File 1
A B C D E F G H I G H - J
A B C D E - F G H K L M N J
File 2
L M N P Q R L S T V G H I
M N O P Q R M N T Y G H I
Now I want a expression by which I can store a particular position in a variable i.e Position No. 9 in file one correspond to E in both lines
And Position No. 9 in File 2 is P in both lines as this file have an empty column
I now I can easily extract a column by using
my ($M, $N, $P) = @data[6,7,8];
for column number 6 7 and 8 etc. But here I want
my $variable = position number 9 in data file (does not matter what is at this position, i.e number, letter or space)