7 lines
210 B
Text
7 lines
210 B
Text
fcn quib(list){ text:=("{"+list.toString(*)[2,-1]+"}").replace("\"","");
|
|
if(list.len()<2) text;
|
|
else{
|
|
z:=(text=text.replace(",",", ")).rfind(",");
|
|
String(text[0,z]," and ",text[z+2,*])
|
|
}
|
|
}
|