Help for this page

Select Code to Download


  1. or download this
    ($mon, $tue, $wed, $thu, $fri, $sat, $sun) = split " ", lc($_);
    $alldays = "$mon $tue $wed $thu $fri $sat $sun"; # Edit doh... forgot 
    +to remove lc and ()
    print "$alldays\n";
    
  2. or download this
    $alldays = lc($_);
    
  3. or download this
    @days = split (/ /);
    $alldays = join ' ', map { lc $_ } @days;