#341 closed defect (invalid)
string-split only considers the first character of delimiter-string
| Reported by: | Moritz Heidkamp | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | unknown | Version: | 4.5.x | 
| Keywords: | string-split don't split right | Cc: | |
| Estimated difficulty: | 
Description
Example:
(string-split "a,b,c" ",xxxx")
=>
("a" "b" "c")
Note: See
        TracTickets for help on using
        tickets.
    

It splits at any char in the delimiter string.
#;5> (string-split "a,b,cxdxe" ",x")
("a" "b" "c" "d" "e")