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!
|
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
Can someone help construct a preg_match for me? Thanks!
|
|||
|
|
|
up vote
2
down vote
accepted
|
Try this regular expression:
But you would need to use
|
||
|
|