in reply to Scrubbing a string

Use regexes with char classes:

#!/usr/bin/perl use warnings; use strict; my $allowed = "pure"; my $re = quotemeta $allowed; my $str = "p u+r-e"; $str =~ s/[^$re]//g; print $str, "\n";

Replies are listed 'Best First'.
Re^2: Scurbbing a string
by FunkyMonk (Bishop) on Aug 24, 2007 at 21:09 UTC
    I always believed that there wasn't interpolation inside a character class.

    ++moritz

      I would have thought the same. But you could get around it by building your RE as a string and then putting that into the s///:
      my $allowed = "pure"; my $re = "[^\Q$allowed\E]"; my $str = "p uuu+tr-ed"; $str =~ s/$re//g; print $str, "\n";

      Caution: Contents may have been coded under pressure.