From b8fde5e8f5dc6f0117d43c254bcc8b5298e438c9 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 10 Nov 2020 17:56:56 +0100 Subject: [PATCH] Tools (trim) added --- pandora_server/lib/PandoraFMS/Tools.pm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index 300e66e5a6..4c9683c888 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -856,6 +856,24 @@ sub clean_blank { return $input; } +################################################################################ +# Erase blank spaces before and after the string +################################################################################ +sub trim { + my $string = shift; + if (is_empty($string)){ + return ""; + } + + $string =~ s/\r//g; + + chomp($string); + $string =~ s/^\s+//g; + $string =~ s/\s+$//g; + + return $string; +} + ################################################################################ # sub sqlWrap(texto) # Elimina comillas y caracteres problematicos y los sustituye por equivalentes