I would like to use Perl split function on comma delimited lines and capture only two or more words between the comma delimited into an array. Single words are not needed.
For example, this line -->> aaa, ccc ddd, eee, fff ggg uuu,
I only want, ccc ddd and fff ggg uuu
while(<FH>)
{
@ = split(/,/);
}