Help for this page

Select Code to Download


  1. or download this
    Name,Type,Age
    Lily,Cat,4
    Buster,Dog,5
    Tweety,Bird,2
    
  2. or download this
    use strict;
    use warnings;
    ...
         return $result[$row_num - 1];  # -1 since array indexes are 0-bas
    +ed,
                                        # and we count our lines 1-based
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
    
        return $all->[0]->{$field_name}
    }
    
  4. or download this
    The animal in line 2 is 4 years old.
    The critter in line 4 is called Tweety.