Help for this page

Select Code to Download


  1. or download this
    @$x = map { $_ ||= "" } @$x;
  2. or download this
    for(  @$x  ) {
        $_ ||= "";
    }
    @$x= @$x;
    
  3. or download this
    @$x= map { defined($_) ? $_ : "" } @$x;