2013/11/27 Jonathon McKitrick <[email protected]> > To clarify what I'm trying to do, I have a map of regexes, and after > iterating them, when one matches (the order of the regexes is significant) > I want exactly one result returned by applying the looked up function to > the string. After that regex matches, no more matches should be attempted.
Sounds like you want clojure.core/filter. -- MK http://github.com/michaelklishin http://twitter.com/michaelklishin -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
