I am searching this string package com.
This is the code
Pattern l_pattern = Pattern.compile("package com\\.",Pattern.CASE_INSENSITIVE);
String l_entireFile=readEntireFile(p_filePath.toString());
String l_spiltCommentString [] = l_pattern.split(l_entireFile);
But it is not searching the same in all the file.
I just want to know why it is showing this behavior.