RosettaCodeData/Task/Strip-comments-from-a-string/Red/strip-comments-from-a-string-2.red

11 lines
182 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
s: "apples, pears ; and bananas"
dlms: charset "#;"
trim head clear find s dlms
== "apples, pears"
s: "apples, pears # and bananas"
trim head clear find s dlms
== "apples, pears"