in reply to Re^3: Performance problems on splitting long strings
in thread Performance problems on splitting long strings

Well, yes, I am using a data pipeline afterwards, something like this:
my $field16 = join '|', sort grep {exists $hash{$_}} @subfiedls;
but I wanted to keep the splitting separate to start with because I suspected that I might have a performance problem with it and therefore wanted to have it as a separate instruction to enable finer benchmarking.