<?php $tools = "<p>tools :<br> 1 Hex Key (or two Hex key)<br> 1 screww drivers<br> 1 hammer <br> 1 drill </p>"; preg_match_all('#^(?!\s*<p>tools\s*:)\s*(.*?)(?=\s*(<br|</p|$))#m', $tools, $tools_array); print_r($tools_array[1]); $tools = '<p>tools : 1 Hex Key (or two Hex key) 1 screww drivers 1 hammer 1 drill </p>'; preg_match_all('#^(?!\s*<p>tools\s*:)\s*(.*?)(?=\s*(<br|</p|$))#m', $tools, $tools_array); print_r($tools_array[1]);
You have javascript disabled. You will not be able to edit any code.