in reply to Need to change directory string.
"..Is there easier way to put this?.."
Another way is to use canonpath method from File::Spec like so:
Output:use strict; use warnings; use File::Spec qw(canonpath); my $dir_str = "test/home/players/demo//thumbs/super.jpg"; print File::Spec->canonpath($dir_str);
|
|---|