Hi,
i've got a problem with regexp,
i have a multiline string like

this is
a multi
line string



and i want to do a regexp that replaces
everything that is NOT "a","b","c"  or "d"
with \s, except \n of course.
i got something like

$string =~ s/![abcd]//g;

but that doesn't work, maybe because
it recognizes ! not as negation but as
character...
so how to do it ?

thanks
  Jaschar Otto


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to