Hi I want to do something like this:

(define test "(1,2,3)(4,5,6)(7,8,9)")

(define (convert m)
  (for/list ([i (cdr m)])
    (string->number i)))

(regexp-match* #rx"([^,\\(\\)]*),([^,\\(\\)]),([^,\\(\\)])" test #:match-select 
convert)

But that fails because the matches are represented as pairs of indexes(the 
matching substrings) in the string. Is there a way to do this or do I have to 
convert afterwards

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to