I am trying to get three numbers from a string
(parse-integer "12 3 6" :start 0 :junk-allowed t) 12 ; 2
Now this returns 2 , namely the number where it can be analyzed. Therefore I can now give
(parse-integer "12 3 6" :start 2 :junk-allowed t) 3 ; 4
But how can I save the return value of 2 and 4 . If I setq into a variable, then only 12 and 3 are saved?
source share