Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to collect all CatIDs from a site...the URL structure is...

http://www.abc.com/family/index.jsp?categoryId=12436777

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

http://www.abc.com/product/index.jsp?productId=12282785

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..

share|improve this question
explode' s first param is the separator item. If you want to use it, do $res=explode("=", $loc) and the id will be in $res[1] – fedorqui Feb 26 at 22:06

7 Answers

up vote 6 down vote accepted

You can use parse_url to reliably give you the query string:

$parts = parse_url('http://www.abc.com/family/index.jsp?categoryId=12436777');

and then parse_str to parse out the variables:

parse_str($parts['query'], $result);
echo $result['categoryId']; // outputs 12436777
share|improve this answer
1  
+1 Same answer than mine, but faster :) – Mathieu Imbert Feb 26 at 22:09
thanks a million..worked like a charm... – N e w B e e Feb 26 at 22:16

You can use the following regex:

http://.+?Id=(\d+)

The 1st group will contain the ID you're looking for.

share|improve this answer

How about:

$url_parts = parse_url('http://www.abc.com/family/index.jsp?categoryId=12436777');

if (isset($url_parts['query'])) {
  $query_parts = explode('&', $url_parts['query']); 

  $keys = array(); 
  foreach ($query_parts as $part) { 
      $item = explode('=', $part); 
      $keys[$item[0]] = $item[1]; 
  } 

  $category_id = isset($keys['categoryId']) ? $keys['categoryId'] : 0;
}
share|improve this answer
+1 for ' parse_url ' idea – N e w B e e Feb 26 at 22:18

try...

  list(,$id) = explode('=','http://www.abc.com/product/index.jsp?productId=12282785');

this will work if there's 1 = in the string

share|improve this answer

explode' s first param is the separator item. If you want to use it, try with something like:

$loc = "http://www.abc.com/family/index.jsp?categoryId=12436777";
$res=explode("=", $loc);

and the id will be in $res[1]

share|improve this answer

Code:

$url = "http://www.abc.com/family/index.jsp?categoryId=12436777";

$parts = Explode('=', $url);

$id = $parts[count($parts) - 1];

Demonstration:

share|improve this answer
2  
For the end component of $parts just use end() function – Sam Feb 26 at 22:15
Thanks for advice, I'll use it next time ^^. – Stepo Feb 26 at 22:17

If you're sure that what , is the only number, just do this

$st = "http://www.abc.com/family/index.jsp?categoryId=12436777";

echo preg_filter('/[^0-9]/','',$st);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.