diff --git a/src/SimpleXLSXGen.php b/src/SimpleXLSXGen.php index 3702cc1..66b95b4 100644 --- a/src/SimpleXLSXGen.php +++ b/src/SimpleXLSXGen.php @@ -216,14 +216,14 @@ class SimpleXLSXGen { $cs = 6; // [22] m/d/yy h:mm } elseif ( mb_strlen( $v ) > 160 ) { $ct = 'inlineStr'; - $cv = str_replace(['&','<','>'],['&','<','>'], $v); + $cv = str_replace(['&','<','>',"\x03"],['&','<','>',''], $v); } else { if ( preg_match('/^[0-9+-.]+$/', $v ) ) { // Long ? $cs = 7; // Align Right } $v = ltrim($v,"\0"); // disabled type detection $ct = 's'; // shared string - $v = str_replace(['&','<','>'],['&','<','>'], $v); + $v = str_replace(['&','<','>',"\x03"],['&','<','>',''], $v); $cv = false; $skey = '~'.$v; if ( isset($SI_KEYS[ $skey ]) ) {