RosettaCodeData/Task/Strip-comments-from-a-string/Zkl/strip-comments-from-a-string-2.zkl
2023-07-01 13:44:08 -04: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()
}