Oh I see,
so, for example, the a string is created like this :
a=$(nawk 'BEGIN { printf("a,b,c"

; for (i=1;i<100;i+3) { printf("\n%d,%d,%d",i,i+1,i+2) }
}')
so, if i have that 'a' and and i put that a on :
nawk '{
a=$(nawk 'BEGIN { printf("a,b,c"

; for (i=1;i<100;i+3){
printf("\n%d,%d,%d",i,i+1,i+2)
}}')
asum=split(a,b,","

printf("%d",asum)
}'
It should be worked ?