On 11-05-10 01:25 PM, Irene Zweimueller wrote:
I tied to get rid of whitespace characters by the following programme:
my $i=" USEFUL ";
$i =~ s/\s//g;
The /g modifier means to repeatly look for the pattern.
See:
perldoc perlretut and search for /Global matching/
perldoc perlre and search for /Modifiers/
--
Just my 0.00000002 million dollars worth,
Shawn
Confusion is the first step of understanding.
Programming is as much about organization and communication
as it is about coding.
The secret to great software: Fail early & often.
Eliminate software piracy: use only FLOSS.
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/