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

3 lines
192 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
> use StringTools in map( Trim@Take, [ "\t\t apples, pears \t# and bananas", " apples, pears ; and bananas \t" ], "#;" ) end;
["apples, pears", "apples, pears"]