RosettaCodeData/Task/Strip-comments-from-a-string/Zkl/strip-comments-from-a-string-2.zkl

7 lines
151 B
Text
Raw Permalink Normal View History

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