How to extract numbers from a string in PHP

This article demonstrates how to extract numbers from a string in PHP using various methods such as regex (regular expressions), built-in functions like `preg_match_all`, `filter_var`, and manual approaches.

Extracting numbers from a string is a common task when handling input data. This article will showcase different ways to extract numbers from a string in PHP, including using regular expressions (regex) and PHP's built-in functions.

PHP Code

Method 1: Using preg_match_all with regex

<?php
$string = "The price is 200 dollars and 30 cents.";
// Use regex to find all numbers in the string
preg_match_all('!\d+!', $string, $matches);

// Return an array containing all extracted numbers
print_r($matches[0]);
?>

Method 2: Using filter_var with FILTER_SANITIZE_NUMBER_INT

<?php
$string = "The price is 200 dollars and 30 cents.";
// Filter the string to keep only the integers
$numbers = filter_var($string, FILTER_SANITIZE_NUMBER_INT);

// Print the filtered numbers
echo $numbers;
?>

Method 3: Manually extracting numbers

<?php
$string = "The price is 200 dollars and 30 cents.";
// Loop through each character and extract numbers
$numbers = '';
for ($i = 0; $i < strlen($string); $i++) {
    if (is_numeric($string[$i])) {
        $numbers .= $string[$i];
    }
}

// Print the extracted numbers
echo $numbers;
?>

Detailed explanation:

Method 1: preg_match_all

  1. preg_match_all('!\d+!', $string, $matches);: Uses regular expression to find all numeric sequences in the string.
  2. print_r($matches[0]);: Prints an array of all the found numbers.

Method 2: filter_var

  1. filter_var($string, FILTER_SANITIZE_NUMBER_INT);: Strips out all non-numeric characters from the string, leaving only integers.

Method 3: Manual approach

  1. for ($i = 0; $i < strlen($string); $i++): Loops through each character in the string.
  2. if (is_numeric($string[$i])): Checks if the current character is a digit.
  3. echo $numbers;: Prints the extracted numbers.

System requirements:

  • PHP version 7.0 or higher.

Tips:

  • When working with strings that contain both numbers and non-numeric characters, always validate input to avoid unexpected data errors.
  • If your string contains negative or floating-point numbers, consider adjusting the regular expression or method to accommodate them.
Tags: PHP, String


Related

Example of Object-Oriented Programming (OOP) in PHP

A guide with a basic example of Object-Oriented Programming (OOP) in PHP, explaining how to use classes and objects to structure code using OOP principles.
Creating a Simple Chat Application Using Socket.IO in PHP

A step-by-step guide to creating a simple chat application using Socket.IO in PHP, helping you understand how to utilize WebSocket for real-time communication.
How to retrieve Data from MySQL Database Using PHP

Learn how to retrieve data from a MySQL database using PHP. Includes detailed code and explanation on how to connect to and query a MySQL database.
Paginate MySQL query results using PHP

A guide on how to paginate MySQL query results using PHP. This PHP code helps split data from MySQL into separate pages for better presentation.
Check if a given String is Binary String or Not using PHP

A guide on how to check if a given string is a binary string (containing only `0` and `1` characters) in PHP. This article uses basic PHP string functions.
Update data in MySQL using PHP

A guide on how to update data in MySQL using PHP. This code uses the UPDATE SQL statement to change information in a MySQL database efficiently.
Update data in MySQL with PHP using Prepared Statements to Prevent SQL Injection

Guide on using Prepared Statements in PHP to update data in MySQL securely and efficiently. This PHP code helps prevent SQL Injection vulnerabilities when working with databases.
How to use the str_pad() function in PHP

A detailed guide on how to use the `str_pad()` function in PHP to pad strings with different characters to a specified length. The article introduces various common uses of this function in programming.
Example of Strategy Pattern in PHP

A guide on the Strategy Pattern in PHP with a concrete example, explaining how to implement and use this design pattern in object-oriented programming.
How to send JSON POST request with PHP

A guide on how to use PHP to send a POST request with JSON data using cURL. The article includes a runnable PHP example along with detailed explanations.

main.add_cart_success