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

4 lines
121 B
Text

fcn stripper(text, a="/*", b="*/"){
while(xy:=text.span(a,b,True)){ x,y:=xy; text=text[0,x] + text[x+y,*] }
text
}