up vote 0 down vote favorite

I need to extract the digits from the following string using regular expression:

pc 32444 xbox 43567

so my array will be

array ([0] => 32444 [1] => 43567)

Can someone help construct a preg_match for me?

Thanks!

link|flag

1 Answer

up vote 2 down vote accepted

Try this regular expression:

/\d+/

But you would need to use preg_match_all to get all matches:

preg_match_all('/\\d+/', $str, $matches)

$matches[0] will then contain the array you’re looking for.

link|flag

Your Answer

get an OpenID
or
never shown

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