
|
Go to the first, previous, next, last section, table of contents.
- strtoascii(str)
-
:: 文字列をアスキーコードで表す.
- asciitostr(list)
-
:: アスキーコードの列を文字列に変換する.
- return
-
strtoascii() :リスト; asciitostr() :文字列
- str
-
文字列
- list
-
1 以上 256 未満の整数からなるリスト
-
strtoascii() は文字列を整数のリストに変換する. 各
整数は文字列のアスキーコードを表す.
-
asciitostr() は asciitostr() の逆関数である.
[0] strtoascii("abcxyz");
[97,98,99,120,121,122]
[1] asciitostr(@);
abcxyz
[2] asciitostr([256]);
asciitostr : argument out of range
return to toplevel
Go to the first, previous, next, last section, table of contents.
|