in reply to Re(2): Searching a collection of signatures
in thread Searching a collection of signatures

After rereading the chomp docs, I realized that chomp will behave like the above regex when $/ is set to '%'...
# One way.... { local $/ = '%'; chomp @sigs; # chomp uses the value of $/ to figure out what to rem +ove } # or another s/%$// for @sigs;

-Blake