「Vl-string-elt」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成: ; 構文 : (vl-string-elt ''string'' ''position'') ; 機能 : 文字列内の指定された位置の文字を表す ASCII を返す。 ; 引数 :* string : 調べる文字…)
 
編集の要約なし
 
1行目: 1行目:
{{AutoLISP}}
; 構文
; 構文
: (vl-string-elt ''string'' ''position'')  
: (vl-string-elt ''string'' ''position'')  
15行目: 16行目:


; サンプル
; サンプル
: (vl-string-elt "May the Force be with you" 8)  
<pre class="brush:autolisp;">
: 70  
(vl-string-elt "May the Force be with you" 8)  
 
70  
</pre>


[[Category:AutoLISP]]
[[Category:AutoLISP]]

2013年3月2日 (土) 16:21時点における最新版

構文
(vl-string-elt string position)


機能
文字列内の指定された位置の文字を表す ASCII を返す。
引数
  • string : 調べる文字列。
  • position : 文字列内の位置。先頭の文字の位置は 0(ゼロ)。 position が文字の範囲外の場合、エラーが発生することに注意。
戻り値
指定された位置の文字の ASCII コードを表す整数。


サンプル
(vl-string-elt "May the Force be with you" 8) 
70