From b1a7cdb836999e52c107687f91953f954d2509b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Mon, 23 Nov 2015 13:52:59 +0100 Subject: [PATCH] GoBD: In data " durch ' ersetzen und ! durch . MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Das sollte deren Import glücklich machen. --- SL/GoBD.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SL/GoBD.pm b/SL/GoBD.pm index 950bfb6da..53a59c44d 100644 --- a/SL/GoBD.pm +++ b/SL/GoBD.pm @@ -595,6 +595,8 @@ sub all_tables { sub _normalize_cell { $_[0] =~ s/\r\n/ /g; $_[0] =~ s/,/;/g; + $_[0] =~ s/"/'/g; + $_[0] =~ s/!/./g; $_[0] } -- 2.20.1