Help for this page

Select Code to Download


  1. or download this
    
    my $city_state = “ BELLMONT NY”;
    $city_state   = join '', map { ucfirst $city_state } split /\s+/ || ''
    +;
    # Bellmont NY
    
  2. or download this
    my $city_state = “ NEW YORK NY”;
    $city_state   = join '', map { ucfirst $city_state } split /\s+/ || ''
    +;
    # New York NY