Help for this page
my $phrase = "This is a test, \"using quotes of 'two different' types. +\""; $phrase =~ s/[\S*\W*]//g; print $phrase;
my $phrase = "This is a test, \"using quotes of 'two different' types. +\""; $phrase =~ s/[^\s*\w*]//g; print $phrase;