-2
如何在數組中添加TEXT?連接數組文本
var_result text[];
var_result_valor text;
var_legenda text;
var_result_valor := '2.34';
var_legenda := 'Baixo';
因此給這個錯誤:
var_result := [var_result_valor,var_legenda]
如何在數組中添加TEXT?連接數組文本
var_result text[];
var_result_valor text;
var_legenda text;
var_result_valor := '2.34';
var_legenda := 'Baixo';
因此給這個錯誤:
var_result := [var_result_valor,var_legenda]
你可以做這樣的事情:
var_result_valor := '2.34';
var_legenda := 'Baixo';
var_result[1]:=var_result_valor;
var_result[2]:=var_legenda;
這是當前陣列documentation。
如果您嘗試這樣做:var_result:= ['2.34','Baixo']' –
導致的錯誤:error sintase「[」 –
「您應該使用ARRAY關鍵字:result:= ARRAY ['a 」, 'b']; –