<?php $needles = ['a','c','r','r']; $haystacks = ['carr','car','arc','ra','c','abc','do','aa','rr', 'rrr']; $result = []; foreach ($haystacks as $i => $haystack) { foreach ($needles as $needle) { $haystack = preg_replace("/$needle/", '', $haystack, 1); } if (!$haystack) { $result[] = $haystacks[$i]; } } var_export($result);
You have javascript disabled. You will not be able to edit any code.