Answers for "how to get number from string by php"

PHP
2

Extract Numbers From a String in PHP

phpCopy<?php 
$string = 'Sarah has 4 dolls and 6 bunnies.';
$outputString = preg_replace('/[^0-9]/', '', $string);  
echo("The extracted numbers are: $outputString \n"); 
?>
Posted by: Guest on April-23-2021
0

php get number from string

function get_numerics ($str) {
    preg_match_all('/\d+/', $str, $matches);
    return $matches[0];
}

// this function will return an array of number

$str = "3 dogs were running!";
echo (get_numerics($str)[0]); 

// output 3
Posted by: Guest on August-24-2021

Code answers related to "how to get number from string by php"

Browse Popular Code Answers by Language