Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $org = "Apple €1200 iMac €1400 Desktop (Description Text) (Description Text)"; $keywords = preg_split("/[($|€|£)]+/", $org); print_r($keywords); preg_match('/^(.+?)\s+(\$|€|£[^(]+?)\s+(\(.*\))/', $org, $match); $brand = $match[1]; $price_products = $match[2]; $all_descriptions = $match[3]; preg_match_all('/(\$\d+)\s+([^$|€|£]+)/', $price_products, $matches, PREG_PATTERN_ORDER); $prices = $matches[1]; $products = $matches[2]; print_r($matches); foreach ($prices as $price) { print_r($price[0]); };
Copy Clear