Go to the first, previous, next, last section, table of contents.


string_to_tb, tb_to_string, write_to_tb

string_to_tb(s)
tb_to_string(tb)
write_to_tb(s,tb)
:: 文字列可変長配列型(text buffer)のデータの処理
return
文字列可変長配列型(string_to_tb), 文字列型(tb_to_string)
s
文字列
tb
文字列可変長配列型
[219] T=string_to_tb("");

[220] write_to_tb("Hello",T);
0
[221] write_to_tb(" world!",T);
0
[222] tb_to_string(T);
Hello world!

ChangeLog


Go to the first, previous, next, last section, table of contents.