I'd like to match the last instance of / (I believe you use [^/]+$) and copy the contents of the next four or less numbers until I get to a dash -.
I believe the "right" method to return this number is through a preg_split, but I'm
not sure. the only other way I know is to explode on /, array reverse, explode on -, assign. I'm sure there's a more elegant way though?
For instance
example.com/12-something // get 12
example.com/996-something // get 996
example.com/12345-no-deal // return nothing
I'm unfortunately not a regex guru like some of you folks though.
Here is an ugly way to do the same thing.
$strip = array_reverse(explode('/', $page));
$strip = $strip[0];
$strip = explode('-', $strip);
$strip = $strip[0];
echo (strlen($strip) < 4) ? (int)$strip : null;
/\/([^-]{0,4})/The number would be in the first capture group. – PhpMyCoder Aug 12 '11 at 19:08