I need to remove any words containing repeated characters from a string in Perl. I can use the /e flag:
/e
$string =~ s/(\w+)/keys %{{map {$_,1} split '', $1}} == length $1 ? $1 : ""/ge;
Can this be done with a single regex, without /e?
$string =~ s/\b\w*(\w)\w*\1\w*\b//g;
Looks weird, but works anyway.
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
183 times
active