Help for this page

Select Code to Download


  1. or download this
      $data =~ s/\s+/ /g;
      # Remove extra spaces to nothing
      $data =~ s/  +//g;
    
  2. or download this
    $length = length( $data );
    if ( ! $length ) { # empty string
    ...
       bail_out( "too long" );
    }
    return $data;