in reply to
removing 2 blanks from a string
Try this,
$string =~ s/( )+/ /g;
Comment on
Re: removing 2 blanks from a string
Download
Code
In Section
Seekers of Perl Wisdom