Box\Spout\Common\Escaper\ODS::unescape PHP Method

unescape() public method

Unescapes the given string to make it compatible with XLSX
public unescape ( string $string ) : string
$string string The string to unescape
return string The unescaped string
    public function unescape($string)
    {
        return htmlspecialchars_decode($string, ENT_QUOTES);
    }