「Vl-string-right-trim」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
編集の要約なし
編集の要約なし
5行目: 5行目:
; 機能
; 機能
: 指定された文字を、文字列の末尾から削除する。
: 指定された文字を、文字列の末尾から削除する。


; 引数
; 引数
:* character-set : 除去する文字をリストした文字列。
:* character-set : 除去する文字をリストした文字列。
:* string : character-set を取り除く文字列。
:* string : character-set を取り除く文字列。


; 戻り値
; 戻り値
15行目: 17行目:


; サンプル
; サンプル
: (vl-string-right-trim " ¥t¥n" " STR ¥n¥t ")  
<pre class="brush:autolisp;">
: '''" STR"'''
(vl-string-right-trim " ¥t¥n" " STR ¥n¥t ")  
: (vl-string-right-trim "4321" "09876543210987654321")  
" STR"
: '''"0987654321098765"'''
 
:  (vl-string-right-trim " " "There are too many spaces here ")
(vl-string-right-trim "4321" "09876543210987654321")  
: '''"There are too many spaces here"'''
"0987654321098765"


(vl-string-right-trim " " "There are too many spaces here ")
"There are too many spaces here"
</pre>


-----
-----

2020年8月5日 (水) 00:12時点における版

構文
(vl-string-right-trim character-set string)


機能
指定された文字を、文字列の末尾から削除する。


引数
  • character-set : 除去する文字をリストした文字列。
  • string : character-set を取り除く文字列。


戻り値
character-set 引数内の文字と一致する文字を先頭からすべて除去した、string の部分文字列を含んだ文字列。


サンプル
(vl-string-right-trim " ¥t¥n" " STR ¥n¥t ") 
" STR"

(vl-string-right-trim "4321" "09876543210987654321") 
"0987654321098765"

(vl-string-right-trim " " "There are too many spaces here ") 
"There are too many spaces here"

関連事項