in reply to How to modify \d in RegEx

You try this,
use warnings; open FILE, "Testus.txt" or die "Couldn't open file."; while (<FILE>) { print "$_ \n" if(/^(\d+\.\d+\t(\d+)\.\d+)/ and grep { +$2} (41 .. 249)};
First match will check for digit,followed by period,then digit,then tab and finally digit in a line and second grep will check the third digit in the match is greater than 40 and less than 250.