std-dclstring->strlist | ![]() |
"DCL string, space delimited listbox, to stringlist"
STD-DCLSTRING->STRLIST
is used to split the return value from a multiple list_box into a list of selected keys. It splits a string into a list of strings, seperated by whitespace. (delims are " \t")
It is the complement to STD-STRLIST->DCLSTRING
.
(std-dclstring->strlist (get_tile "mlist")) (mapcar 'atoi (std-dclstring->strlist "1 2 3")) => (1 2 3)
str: a string.
A list of strings or nil.
None.
(std-require 'STDSTR)
Defined in STDSTR