
|
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.
|