I need to use regex for a string to find matching results. I need to find the (.+?) but would like to ignore everything where it says (*) right now:
$regex='#<span class="(*)"><a href="/venues/(*)">(.+?)</a></span>#';
Instead of ignoring (* ), it echoes out what is in (* ).
How can I ignore these and only get (.+?) ?