Help for this page

Select Code to Download


  1. or download this
     
    my @sub_locs = grep { $_ } map { /taxman\.add\.subloc\.(.*)/ } @sessio
    +n_keys;
    
  2. or download this
    my @sub_locs = grep { defined $_ } map { /taxman\.add\.subloc\.(.*)/ }
    + @session_keys;
    
  3. or download this
    my @sub_locs = map { /taxman\.add\.subloc\.(.+)/ } @session_keys;