ciao whisher....
mi vergogno a postare di nuovo , ma non riesco a capire xche se copio e incollo il codice da te scritto ricevo un risultato diverso dal tuo.
Codice PHP:
$stringa = "25+12 o 13 anche 21 e 31";
preg_match_all("/(d+)/", $stringa,$match );
echo "<pre>";
print_r($match[0]);
anche facendo:Array
(
)
Codice PHP:
$stringa = "25+12 o 13 anche 21 e 31";
preg_match_all("/(d+)/", $stringa,$match );
var_dump($match);
:master:array(2) { [0]=> array(0) { } [1]=> array(0) { } }
GRAZIE
SAT