I need to look_down a tree and find all items which has style attributes of 128px;width:160px; (there might be more style attributes for items, but this is all I'm interested in)
Is there any way to use regex to filter this?
Currently I have @rows = $tree->look_down('style' => /128px\;width:160px\;/ );
but that doesnt even compile :/ Any ideas?