in reply to Re^2: Alphnumeric Matching
in thread Alphnumeric Matching
Well, if you outcomment the sort there's little chance it will sort. And you may want to do a string compare instead of a numeric compare.#my @tapes_to_eject=sort { substr($a, 1) <=> substr($b, 1)} @_;
|
|---|