Determine if the string is composed of printable characters.

Twine\Str::isPrintable() : bool

Examples

$string = new Twine\Str('john pinkerton');

        $string->isPrintable(); // Returns true
$string = new Twine\Str("john\npinkerton");

        $string->isPrintable(); // Returns false