J
Jerry Preston
I am trying to breakdown the following line:
SPLIT #1:--> XXXXXXX... .......... .....
^ ^^^^^^^^^^ ^^^^^^^^^ ^^^^^
I want the 1, XXXXXXX..., .......... and .....
I am using:
$line[ 0 ] =~ /SPLIT #(\d+):-->\s+(\w{10})\s+(\w{10})\s+(\w{5})/;
and I am only getting the "1". I do not see what I am doing wrong.
I know it is simple but what am I missing?
Thanks,
Jerry
SPLIT #1:--> XXXXXXX... .......... .....
^ ^^^^^^^^^^ ^^^^^^^^^ ^^^^^
I want the 1, XXXXXXX..., .......... and .....
I am using:
$line[ 0 ] =~ /SPLIT #(\d+):-->\s+(\w{10})\s+(\w{10})\s+(\w{5})/;
and I am only getting the "1". I do not see what I am doing wrong.
I know it is simple but what am I missing?
Thanks,
Jerry