Help for this page
Select Code to Download
Select
or
download this
while ($string =~ /(\s+\|)/) { $string =~ s/$1/\|/; }
Select
or
download this
$string =~ s/\s+\|/|/g;