I need one help.i need to separate numeric value from character using PHP.I am explaining my code below.
$subcatid=a1,a2,4,5
here i have some value with comma separator i need here separate numeric value(i.e-4,5
) first and push them into a array then i have to separate rest numeric value from character(i.e-1 from a1,2 from a2
) and push those separated value into another array.Please help me.