RosettaCodeData/Task/Strip-comments-from-a-string/Zkl/strip-comments-from-a-string-2.zkl
2017-09-25 22:28:19 +02:00

6 lines
151 B
Text

fcn stripper(text,a,b,c,etc){
vm.arglist[1,*].reduce('wrap(text,c){
if (Void!=(n:=text.find(c))) text[0,n] else text
},text)
.strip()
}