「Ascii」の版間の差分
(ページの作成: ; 構文 : (ascii ''string'') ; 機能 : 文字列の先頭文字を ASCII 文字コード(整数)に変換して返す。 ; 引数 :* string : 文字列。 ; 戻り値 : …) |
編集の要約なし |
||
14行目: | 14行目: | ||
; サンプル | ; サンプル | ||
: (ascii "A") | <pre class="brush: autolisp;"> | ||
(ascii "A") | |||
65 | |||
(ascii "a") | |||
97 | |||
(ascii "BIG") | |||
66 | |||
</pre> | |||
2010年3月12日 (金) 11:42時点における版
- 構文
- (ascii string)
- 機能
- 文字列の先頭文字を ASCII 文字コード(整数)に変換して返す。
- 引数
-
- string : 文字列。
- 戻り値
- 整数。
- サンプル
(ascii "A") 65 (ascii "a") 97 (ascii "BIG") 66
関連事項
- chr 関数