RosettaCodeData/Task/Comma-quibbling/Mathematica/comma-quibbling.math

5 lines
148 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
quibble[words___] :=
ToString@{StringJoin@@
Replace[Riffle[{words}, ", "],
{most__, ", ", last_} -> {most, " and ", last}]}