i have a string
showing 1 - 12 of 324 Results
i want to stip this string like
324 Results
or
324
only
Note that, 324 is figure that will change every time the string is obtained. it may be 2-figures (34), three or 4 figured.
currently i am at success only in droping showing word using code
'str_replace('Showing', '', $s)'
this gives out put as
1 - 12 of 324 Results
how can i use str_replace function to get my purpose? or i should use anyother function of PHP?