Effacer espace au début et à la fin d’une chaîne

Author:
sub trim
{
    my @out = @_;
    for (@out) {
        s/^s+//;          # Espace à gauche