Hi Boris, welcome to Ruby and Camping :)
Camping doesn't support nested regexp groups like ((\w+)\/) so you'll have to do it differently. Your second approach is right. You can also use the multiple arguments input if you don't want to split the string with the commas. Like ?tag=one&tag=two&tag=three. That will give you a ['one', 'two', 'three'] array in input.tag. -- Cheers, zimbatm http://zimbatm.oree.ch _______________________________________________ Camping-list mailing list [email protected] http://rubyforge.org/mailman/listinfo/camping-list

