I want to get the oID
parameter from this HTML source with a regex condition:
<img src="button_print.gif" style="cursor:hand" onclick="window.open('http://domain.com/print_order.php?oID=5', 'popup', 'toolbar=0, width=640, height=600')">
I´ve tried many different ways now but I´m unable to find the right way. For my understanding this regex should work (but it doesn´t):
oID=(\d+)
Maybe somebody has a hint for me?