- or download this
use strict;
use warnings;
...
Great Gazoo:1:1:2:3:2
Charlie Harper:1:a:b:c:4
Neil Gruesome:1:x:y:z:6
- or download this
$ perl ex_split_ign_whitespace.pl
Customer Name: wilma flintstone Number of Books checked out:
+ 3
...
Customer Name: Great Gazoo Number of Books checked out: 2
Customer Name: Charlie Harper Number of Books checked out: 4
Customer Name: Neil Gruesome Number of Books checked out: 6
- or download this
use strict;
use warnings;
...
Great Gazoo:1:1:2:3:2
Charlie "the Angel" Harper:1:a:b:c:4
Neil Gruesome:1:x:y:z:1026
- or download this
$ perl ex_split_ign_whitespace.pl
Customer Name: wilma flintstone Number of Books checked out: 3
...
Customer Name: Great Gazoo Number of Books checked out: 2
Customer Name: Charlie "the Angel" Harper Number of Books checked o
+ut: 4
Customer Name: Neil Gruesome Number of Books checked out:1026