http://qs321.pair.com?node_id=438177


in reply to Re: The greedy change-making problem using regexes
in thread The greedy change-making problem using regexes

Personally I would avoid the 1{10} stuff. For two reasons, first is that 1{10} is less efficient to match than "1" x 10, and second reason is that the speed of the regex once my trie patch gets applied will be massively faster as without the curlies it will be optimised and with them it wont. :-)

---
demerphq