PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
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]); };
Show:  
Copy Clear