in reply to How do I select first string of a two dimensional array to compare to other values?
use strict; use warnings; print $_ for my ($data) = split ',', <DATA>; __DATA__ 123,456 234,567 345,456 #outputs: '123'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do I select first string of a two dimensional array to compare to other values?
by 2teez (Vicar) on Aug 31, 2015 at 06:25 UTC |