show/hide this revision's text 2 added 6 characters in body

As a side note, I'm suspecting that the $[1] _[1] and $[2] _[2] variables refer to the automatically passed in @_ array of a sub.

It's helpful - would have saved you quite some explaining here and made your code more understandable by itself - and common practice to use something like the following at the beginning of the sub:

sub mysub {
  my ($param1, $string, $delim) = @_;
  # ...
}
show/hide this revision's text 1

As a side note, I'm suspecting that the $[1] and $[2] variables refer to the automatically passed in @_ array of a sub.

It's helpful - would have saved you quite some explaining here and made your code more understandable by itself - and common practice to use something like the following at the beginning of the sub:

sub mysub {
  my ($param1, $string, $delim) = @_;
  # ...
}