var cell1 = Forguncy.Page.getCell("select_list").getValue();
function ToCDB(str) {
var tmp = "";
for (var i = 0; i < str.length; i++) {
if (str.charCodeAt(i) > 65248 && str.charCodeAt(i) < 65375) {
tmp += String.fromCharCode(str.charCodeAt(i) - 65248);
}
else {
tmp += String.fromCharCode(str.charCodeAt(i));
}
}
return tmp
}
cell1 = ToCDB(cell1);
var arr = cell1.split(",");
var newArr = [];
for (var i in arr) {
if(arr){
newArr.push(arr);
}
}
console.log(newArr);
Forguncy.Page.getCell("temp").setValue(newArr);