in reply to Meaning of the regex?? Help!!

If you use warnings;, you should get a warning message stating:
Scalar value @words[0] better written as $words[0]

So, you should use $words[0].

You may find it more straightforward to just use the concatenation operator, instead of join:

$line = $words[0] . $date_intlck_rel_res;