$str = "//abdhbw/1234/acljk/5678/qacjk";
echo preg_replace("/[\D]+)/","",$str);
You don't state whether you want the values into an array or whether you just want one long string of numbers. The code gives long number.
If you're certain you don't have any values like /0/, you can use this to put them into an array:
$str = "//abdhBw/1234/acljk/5678/qacjk";
$r = array_filter(preg_split("/[\D]+/",$str));
print_r($r);
But just in case, you can do this:
$str = "//abdhBw/1234/acl0jk/5678/qacjk";
preg_match_all("/[\d]+/",$str,$matches);
print_r($matches[0]);
diafol
Rhod Gilbert Fan (ardav)
7,792 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080
Maybe cut on '/' and check the contents for integer type.
$t = "/aldscb1234wder/q1274/12643yujo/243724/";
$partz = explode("/",$t);
foreach($partz as $part){
if(preg_match("/^\d+$/",$part)){
$new_r[] = $part;
}
}
print_r($new_r);
or even:
$t = "/aldscb1234wder/123//q1274/12643yujo/243724/";
preg_match_all("/\/\d+\//",$t,$matches);
$r = str_replace("/","",$matches[0]);
print_r($r);
however, this won't be positive for start of string or end of string numbers unless there are / at start and end.
EDIT:
OK fixed
$t = "123/aldscb1234wder///1274/12643yujo/243724/q23";
preg_match_all("/(\b|\/)\d+(\b|\/)/",$t,$matches);
$r = str_replace("/","",$matches[0]);
print_r($r);
THat will return integers at the start and end of your string.
diafol
Rhod Gilbert Fan (ardav)
7,792 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080
OK, mark as solved with the link below the edit box.
diafol
Rhod Gilbert Fan (ardav)
7,792 posts since Oct 2006
Reputation Points: 1,170
Solved Threads: 1,080