in reply to Simple Problem getting me Stumped

Since you're trying to match a leading substring, use a regular expression.
if ( $variable =~ /^read_community/ ) { ...
should do it.

Note that there's one other problem in your code.

chomp;
should be
chomp($variable);