http://qs1969.pair.com?node_id=692945


in reply to words wich ends with "f"

I'd go with something like this (yeah, TIMTOWTDI):

$s = "four fifth two frog left leaf fred wolf"; @f = grep (/^[^f]\w*f\w*$/, split(' ', $s)); print "@f";
--
b10m