RosettaCodeData/Task/Strip-block-comments/Zkl/strip-block-comments.zkl
2023-07-01 13:44:08 -04: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
}