RosettaCodeData/Task/Abbreviations-automatic/Raku/abbreviations-automatic.raku
2023-07-01 13:44:08 -04:00

8 lines
274 B
Raku

sub auto-abbreviate ( Str $string ) {
return Nil unless my @words = $string.words;
return $_ if @words».substr(0, $_).Set == @words for 1 .. @words».chars.max;
return '';
}
# Testing
say ++$, ') ', .&auto-abbreviate, ' ', $_ for './DoWAKA.txt'.IO.lines;