All you need to do is replace @_ with @_ ? @_ : $_ in the argument to the for loop.
sub trim {
for (@_ ? @_ : $_) {
s|^\s+||;
s|\s+$||;
}
}
Per ikegami's answer, there is the nagging issue of what to do about the blight that is lexical $_ (declared with my $_;) since that version of $_ is not global, but bound to a lexical pad.
The (_) prototype is one way to solve this problem, but it also means that the subroutine only takes one argument, and that the argument has scalar context, which makes it just as bad as the ($) prototype (due to unintended consequences of scalar context).
Whenever trying to do magic on lexicals, the module PadWalker comes in handy. So here is a version that works correctly on lists, works on both lexical and global $_, and it does not impose scalar context on the call site:
use PadWalker 'peek_my';
sub trim {
my $it;
unless (@_) {
my $pad = peek_my 1;
$it = $$pad{'$_'} || \$::_
}
for (@_ ? @_ : $$it) {
s/^\s+//;
s/\s+$//;
}
}
{local $_ = " a "; trim; say "[$_]"} # prints "[a]"
{my $_ = " a "; trim; say "[$_]"} # prints "[a]"
{my $x = " a "; trim $x; say "[$x]"} # prints "[a]"
Personally, I just avoid lexical $_ and ugly problems like this just disappear. But if you need to support it, this is a way.