#!/usr/bin/perl -w print ("Enter the word to search >> "); chomp ($word = ); { local $/=undef; print grep { $_ =~ $word } =~ m!(.*?)!gs; } __DATA__ c:\data\cat.xml dog, cat, fish, bird c:\data\cow.xml dog, cat, fish, bird, cow, goat c:\data\snake.xml dog, cat, fish, bird, snake, orange