my $LEN = 8; # Desired length my $match; while ($match = ) { chomp $match; last if $LEN == length($match); } die "Didn't find a match" if not defined $input; print "First match: '$match'\n"; #### use List::MoreUtils 'firstval'; my $match = firstval { chomp; $LEN == length } ;