std-strlist-match | ![]() |
(std-strlist-match <strlst> <match>) ; like equal but uses wcmatch
STD-STRLIST-MATCH
returns all matching elements in strlst which match if the comparison is done with WCMATCH
.
(std-strlist-match '("Testname" "0" "Testlayer") "Test*")
=> ("Testname" "Testlayer")
strlst: a list of strings
match: any valid regular expression suitable for WCMATCH
.
A list of all matching elements or nil.
None.
(std-require 'STDSTR)
Defined in STDSTR