PHPで文字列から数値を抽出してみます。 今回、文字列から数値を抽出するにあたり、preg_replace()関数を使用します。 ■環境・Windows10 ・XAMPP 8.0.6 ・PHP Version 8.0.6 ■PHPのpreg_replace()関数を使用し文字列から数値を抽出するでは、早速PHPのpreg_replace()関数を使用し、文字列から数値を抽出してみます。 ■コード<html lang="ja"> <head> <title>preg_replace()関数を使用し、文字列から数値を抽出</title> </head> <body> <?php $string = "test01234567"; echo preg_replace("/[^0-9^]/",'',$string); ?> </body> </html>今回はstringという変数を宣言し、その中