I have an image file name that consists of four parts:
$Directory(the directory where the image exists)$Name(for a art site, this is the paintings name reference #)$File(the images file name minus extension)$Extension(the images extension)
$example 100020003000.png
Which I desire to be broken down accordingly:
$dir=1000 $name=2000 $file=3000 $ext=.png
I was wondering if substr was the best option in breaking up the incoming $example so I can do stuff with the 4 variables like validation/error checking, grabbing the verbose name from its $Name assignment or whatever. I found this post:
is unpack faster than substr? So, in my beginners "stone tool" approach:
my $example = "100020003000.png";
my $dir = substr($example, 0,4);
my $name = substr($example, 5,4);
my $file = substr($example, 9,4);
my $ext = substr($example, 14,3); # will add the the "." later #
So, can I use unpack, or maybe even another approach that would be more efficient?
I would also like to avoid loading any modules unless doing so would use less resources for some reason. Mods are great tools I luv'em but, I think not necessary here.
I realize I should probably push the vars into an array/hash but, I am really a beginner here and I would need further instruction on how to do that and how to pull them back out.
Thanks to everyone at stackoverflow.com!
packis probably the fastest by a hair, butpack,substr, and regexes should all be fast enough that you don't need to worry. And if performance is really a concern, don't guess, benchmark withBenchmark. – hobbs Oct 8 '09 at 5:58substrwins. – hobbs Oct 8 '09 at 6:12