What I want 1more stuff...What I want 2...more stuff...What I want 3...more stuff #### #got the html page already and I saved as .txt my $output_file = "/temp_my_news.txt"; open(OUTPUT, "$output_file") || print "There is no file here!"; while() { if ($_=~/(.*?)/g) { print $1; }else{print "
Nothing Here!
";} } close OUTPUT;