in reply to regex needed
Perhaps you want:
while (<DATA>) { chomp; if ($var eq 'Sensor30') { print "MATCH => $_\n"; } } [download]