Help for this page
Select Code to Download
Select
or
download this
@$x = map { $_ ||= "" } @$x;
Select
or
download this
for( @$x ) { $_ ||= ""; } @$x= @$x;
Select
or
download this
@$x= map { defined($_) ? $_ : "" } @$x;