Aca te dejo una función que te guarda el valor y la posición
Código PHP:
Ver original<?php
/**
*
*/
function search_numbers($text){
if(@$matches){
foreach($matches as $match){
foreach($match as $k => $value){
$result[$k]['value'] = $value;
$result[$k]['position'] = strpos($text, $value); }
}
}
return $result;
}
$text = 'Piso123Plaza456';
$resultado = search_numbers($text);
echo "<pre>";
?>