in reply to Re: strip out of single quotes
in thread strip out of single quotes

Or:

$str =~ tr/'//d;
Naked blocks are fun! -- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re^3: strip out of single quotes
by ikegami (Patriarch) on Sep 16, 2025 at 17:52 UTC

    Indeed. And tr/'//d is faster than s/'//g.