in reply to Re^2: How to delete trailing spaces from array elements?
in thread How to delete trailing spaces from array elements?
if you don't want to dig into regular expressions (that funny /\s+$//gms stuff) yourself, you might try this approach:
use Text::Trim; my @strings2trim = ("yo ", " boo"); trim(@strings2trim);
|
|---|