I\'m not good with regex but i want to use it to extract words from a string.
The words i need should have minimum 4 characters and the provided string can
Try this one:
$str='Sus azahares presentan gruesos pétalos blancos teñidos de rosa o violáceo en la parte externa, con numerosos estambres (20-40).'; preg_match_all('/([^0-9\s]){4,}/i', $str, $matches); echo ''; var_dump($matches); echo '';
'; var_dump($matches); echo '