How can I preg_split a string for each number?

I need to explode a string in each number, eg:


$string= "Real Sporting Gijon 49\\' Rondon (1-0)";

// here whould be the preg_split

print_r ($exploded_array);

This should echo : array (0 -> Real Sporting Gijon 1-> 2-> \’ Rondon … etc)

Also, is there any way to delete all the combinations of round brackets like “(1-0)” o “(0-0)” from a string?

Well… you already know you need a preg_split…
So… what are you having difficulty with? Defining a pattern for 'a number"?

yes, the whole preg_split syntaxis is a bit confusing, what should be the pattern?

~\d~