指定された文字を、文字列の先頭と末尾から削除します。
サポートされているプラットフォーム: Windows および Mac OS
(vl-string-trim 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"