79555307

Date: 2025-04-04 12:32:55
Score: 1
Natty:
Report link

You can do it with Raku/Sparrow :

within: :0:
regexp: "/" (\w+) ".tsv" \s+
end:


code: <<RAKU
!raku

for captures()<> -> $c {
  say $c<>.map({$_ ~ ".tsv"}).join(" ");
}
RAKU
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alexey Melezhik