eZ\Publish\Core\Search\Common\FieldValueMapper\StringMapper::convert PHP Method

convert() protected method

Convert to a proper search engine representation.
protected convert ( mixed $value ) : string
$value mixed
return string
    protected function convert($value)
    {
        // Remove non-printable characters
        return preg_replace('([\\x00-\\x09\\x0B\\x0C\\x1E\\x1F]+)', '', (string) $value);
    }