Vle-string-split
- 構文
- (vle-string-split keys Str )
- 機能
- 文字列 str を、keys で指定された区切り文字に基づいて分割する
- 引数
-
- keys : 使用するすべてのデリミタ文字を含む文字列
- Str : トークンに分割される文字列
- 戻り値
- 文字列トークンのリスト。
- 文字列の中にキーとなる文字がない場合、リストには元の文字列(1トークン)だけが含まれます。
エイリアス: vl-string-split, string-split
- サンプル
(vle-string-split ",;" "Sample, using different keys; voila") ("Sample" " using different keys" " voila") (vle-string-split "-" "Sample, using different keys; voila") "Sample, using different keys; voila"
関連事項