I am trying to collect all CatIDs from a site...the URL structure is...
I am interested in it categoryId which is in this case is 12436777
My question is
Which is best, Regex or string explode??
if regex, please help me, I am very bad on it..
Also, I have to consider that URLs like
I tried
$array = explode("http://www.abc.com/family/index.jsp?categoryId=", $loc);
foreach ($array as $part) {
$zee[] = $part[1];
}
but it gives me nothing ..
thanks for help..




$res=explode("=", $loc)and the id will be in$res[1]– fedorqui Feb 26 at 22:06