([^<]+)@', $html, $item);
preg_match('@([^<]+)@', $html, $price);
preg_match('@([^<]+)@', $html, $shipping);
$this->doPrivmsg(
$this->event->getSource(),
sprintf('Current Woot: %s, %s %s -- http://www.woot.com/', $item[1], $price[1], $shipping[1])
);
unset($item, $price, $shipping, $html);
}
}