Updated TableParser in all programs

This commit is contained in:
Carlos Salguero
2018-06-15 00:00:42 -03:00
parent 82a3cda72d
commit 2bb073e218
11 changed files with 11 additions and 11 deletions

View File

@@ -407,7 +407,7 @@ sub remove_quoted_text {
my ($string) = @_;
$string =~ s/[^\\]`[^`]*[^\\]`//g;
$string =~ s/[^\\]"[^"]*[^\\]"//g;
$string =~ s/[^\\]"[^"]*[^\\]"//g;
$string =~ s/[^\\]'[^']*[^\\]'//g;
return $string;
}