Function Entry: VLE-STRING-SPLIT

← Prev | ↑ Chapter | Next → | Index | Symbols

Function Entry: VLE-STRING-SPLIT

Name

vle-string-split

Class

BricsCAD VLE Library Function

Syntax

(vle-string-split keys string)

Arguments and Values

  • keys string containing all delimiter characters to be
  • used
  • string the
  • string to be splitted into tokens

Description

splits the given string string into string-tokens, based on delimiter characters as specified by keys

Return Values

list of string tokens;

if none of the keys characters is present in string, the list contains only the original string (1 token)

Examples

(vle-string-split ",;"
"Sample, using different keys; voila")

returns   '("Sample" " using different
keys" " voila")

Notes

if no <delimiter> character is contained, the returned list will contain v the original string

Availability

  • AutoCAD 2026: not documented.
  • BricsCAD V26: documented.
  • Status: BricsCAD-only.

Source Notes