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

2023-07-01 11:58:00 -04: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"