sub remove_wrapping_whitespaces {   my $string = shift;   $string =~ s/^\s+//;   $string =~ s/\s+$//;   return($string); }