Help for this page

Select Code to Download


  1. or download this
    $string = customPerlMod::trim($string);
    
  2. or download this
    package customPerlMod;
    use Exporter 'import';
    our @EXPORT_OK = qw( trim ltrim rtrim );
    
  3. or download this
    use customPerlMod qw{ trim };
    $string = trim($string);