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; 
link|improve this question

The regex you could use would be: /\/([^-]{0,4})/ The number would be in the first capture group. – PhpMyCoder Aug 12 '11 at 19:08
feedback

2 Answers

up vote 1 down vote accepted

This should work

    $str = "example.com/123-test";
    preg_match("/\/([\d]{1,4})-[^\/]+$/", $str, $matches);
    echo $matches[1]; // 123

It makes sure that the ###-word part is at the end and that there are only 1-4 digits.

link|improve this answer
This will not always match the last slash. For instance: example.com/123-test/blabla – Karolis Aug 12 '11 at 19:16
1  
It sure does, try it out! ideone.com/9Pt1O – Vache Aug 12 '11 at 19:18
When I wrote the comment there was a different version of regex ;) – Karolis Aug 12 '11 at 19:20
preg_match("/\/([\d]{1,4})-[^\/]+$/", $page, $etc); print_r(array_pop($etc)); Worked great – ehime Aug 12 '11 at 19:36
feedback

A match on /\/(\d{1,4})-[^\/]+$/ should fit the bill with the number in the first capture var. My apologies, I don't write PHP and I don't want to deal with preg_match's interface, but that's the regex anyhow.

If PHP supports non-slash regex delimiters these days, m#/(\d{1,4})-[^/]+$# is the version with fewer leaning-toothpicks.

link|improve this answer
Actually {1,3} – Karolis Aug 12 '11 at 19:15
Don't you think that the # look like 4 thoothpicks put together? ;) – Vache Aug 12 '11 at 19:15
hobbs I get Array ( [0] => training/2-wedding-training [1] => ) $etc = preg_split("/\/(\d{1,4})-[^\/]+$/", $page); print_r($etc); as a result – ehime Aug 12 '11 at 19:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.