vl-string-trim (AutoLISP)

指定された文字を、文字列の先頭と末尾から削除します。

サポートされているプラットフォーム: Windows および Mac OS

構文と要素

(vl-string-trim char-set str)
char-set

タイプ: 文字列

除去する文字。

str

タイプ: 文字列

char-set を除去する文字列値。

戻り値

タイプ: 文字列

指定された文字が除去された後の str の値。

(vl-string-trim " \t\n" " \t\n STR \n\t ")
"STR"

(vl-string-trim "this is junk" "this is junk Don't call this junk! this is junk")
"Don't call this junk!"

(vl-string-trim " " "      Leave me alone   ")
"Leave me alone"