in reply to Re: problem in search pattern
in thread problem in search pattern

As someone said earlier, you want to say:
$row{test_name} =~ /PRC/
rather than:
$row{test_name} =~ "PRC"
Note the slashes versus quote marks.