IT/パソコン

Thumbnail of post image 174

PHPでの正規表現をよく忘れるのでw

自分用メモ

PHP正規表現リスト数字のみ

if (preg_match(“/^+$/”, $string)) {

小数点を含む数字(正の数のみ) ...