Provided by: libcatmandu-perl_1.2021-1_all bug

NAME

       Catmandu::Fix::trim - trim leading and ending junk from the value of a field

SYNOPSIS

          # the default mode trims whitespace
          # e.g. foo => '   abc   ';

          trim(foo) # foo => 'abc';
          trim(foo, whitespace) # foo => 'abc';

          # trim non-word characters
          # e.g. foo => '   abc  / : .';
          trim(foo, nonword) # foo => 'abc';

          # trim accents
          # e.g. foo => 'français' ;
          trim(foo,diacritics) # foo => 'francais'

SEE ALSO

       Catmandu::Fix

perl v5.38.2                                       2024-07-02                           Catmandu::Fix::trim(3pm)