in reply to Re^2: Delete line
in thread Delete line

When you say the word "IT" do you really mean "IT" as a word? It is important:
use strict; use warnings; while(<DATA>) { print if /IT/ } __DATA__ This is IT for now Nothing of interest here Looping is used for ITeration
gives:
This is IT for now Looping is used for ITeration
However if we use the word boundary anchor \b:
while(<DATA>) { print if /\bIT\b/ }
we only get
This is IT for now