[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] Perl quickie
- Subject: [ale] Perl quickie
- From: cfowler at outpostsentinel.com (Chris Fowler)
- Date: Fri Jan 16 11:21:45 2004
I'm trying to remove all spaces in a string.
my $dir = $tag->{GENRE}."/".$info->{ARTIST}."/".$info->{ALBUM};
my $dir =~ (s/\ /\_/g);
print $dir."\n";
What is the right way to do it?
Thx,
Chris