aidy rutter wrote:
> I have a number of tables with an ID="SearchResults".
>
> Is it possible to count the number of tables with this ID?
ie.tables.select{|t| t.id == 'SearchResults'}.length
Our collections include the Ruby "Enumerable" module. That's what allows
you to do this and lots of other cool things.
Bret