Help for this page

Select Code to Download


  1. or download this
    my $reformatted = join(' ',
                      map { length($_) < 16 ? $_ : split /,/,$_,2 }
                      split /\s+/, $original);
    
  2. or download this
    $original =~ s/,\s+/, /g;