PowerBuilder string value to int array
i need ►
◄ ls_value2
convert to ►
◄ noa_payment[]
//========need=========
//noa_payment[] = ls_value2
String ls_data[], ls_value, ls_cln
int noa_payment[]
ll_col = dw_3.getcolumn()
ls_cln = dw_3.Describe("#" + String(ll_col) + ".name")
ll_count = invo_dddw_multiselect.of_getdata(ls_cln , dw_3.GetRow(), ls_data)
ls_value2=""
For ll_row = 1 To ll_count
ls_value2 += ls_data[ll_row] + ","
Next
//========need=========
//noa_payment[] = ls_value2
// code:
For ll_row = 1 To ll_count
noa_payment[ll_row] = Integer( ls_data[ll_row] )
Next