Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
PHP:preg_match_all('/\d/', $text, $teffer)
preg_match_all('/^[0-9]$/', $text, $treffer)
crash[~]$ php -r '$treffer = array(); preg_match_all("/\d/", "df45df64ifdsf7dsf787", $treffer); var_dump($treffer[0]);'
array(8) {
[0]=>
string(1) "4"
[1]=>
string(1) "5"
[2]=>
string(1) "6"
[3]=>
string(1) "4"
[4]=>
string(1) "7"
[5]=>
string(1) "7"
[6]=>
string(1) "8"
[7]=>
string(1) "7"
}