<?php $input = 'Lorem Ipsum is simply dummy text of the printing industry.'; $except = array('and', 'the', 'text', 'simply'); preg_match_all('/(?<match>\w{3,}+)/', $input, $matches, PREG_PATTERN_ORDER); print_r(array_diff($matches['match'], $except));
You have javascript disabled. You will not be able to edit any code.