I'm trying to get three numbers out of a string
(parse-integer "12 3 6" :start 0 :junk-allowed t)
12 ;
2
Now this returns 2
as well, which is the number where it could be parsed.
So I can now give
(parse-integer "12 3 6" :start 2 :junk-allowed t)
3 ;
4
But how do I store the value of 2
and 4
that it returned. If I setq
it into a variable only the 12
and 3
are stored?