@phluid61 - I think it's one of those rules of thumb handed down by the perl monks - my guess is there is no harm in modifying $_ in this case but not a habit you generally want to get into :-) Thanks for making the change.
In Perl Best Practices, Damian Conway recommends for loop in this case of in-place modification, reserving map for really trivial read, process and stuff results elsewhere:
for ( @values ) { s/%3A/:/g }
When the loop grows, there is an option to write for my $varname (...) {...}, then you've got a named alias instead of $_.
Will effectively erase the content of @vals so no subject data is imported.
@phluid61 - don't modify $_ in a map, and remember that the output of s/// is the success code not the altered string.
Try:
or better
The text was updated successfully, but these errors were encountered: