newLISP Fan Club

Forum => Anything else we might add? => Topic started by: Ormente on November 28, 2013, 08:38:35 AM

Title: [proposal] We have "format"... could we have "scan" ?
Post by: Ormente on November 28, 2013, 08:38:35 AM
Hi Lutz,



Sometimes REGEX are too slow for simple things that could be better done with the scan, the "inverse" of format.



Do you think it could be possible to have a scan function in newlisp, or have you an alternative to suggest ?



Thanks
Title: Re: [proposal] We have "format"... could we have "scan" ?
Post by: Lutz on November 28, 2013, 11:19:25 AM
You could do something like this:



(define (scan fmt txt vars)
    (map set vars (map apply fmt (map list (parse txt))))
)

> (scan '(string float int) "hello 123.45 789" '(str fval ival))
("hello" 123.45 789)
> str
"hello"
> fval
123.45
> ival
789
>


or this variation:



(define (scan fmt txt)
    (map set (args) (map eval (map list fmt (parse txt))))
)

(scan '(string float int) "hello 123.45 789" 'str 'fval 'ival)