RosettaCodeData/Task/Strip-comments-from-a-string/Maple/strip-comments-from-a-string.maple

3 lines
192 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
> use StringTools in map( Trim@Take, [ "\t\t apples, pears \t# and bananas", " apples, pears ; and bananas \t" ], "#;" ) end;
["apples, pears", "apples, pears"]