M
Mark Healey
Here is the line that is giving me problems:
$Falbum =~ s/$edir\/.\/$Fartist\///;
The problem is that $Fartist sometimes has grouping characters "()[]"
which screws up the search.
How do I get it to treat these characters as if they were "\(\)\[\]"?
$Falbum =~ s/$edir\/.\/$Fartist\///;
The problem is that $Fartist sometimes has grouping characters "()[]"
which screws up the search.
How do I get it to treat these characters as if they were "\(\)\[\]"?