Prueba a ver si funciona esto:
Código [Seleccionar]
System.out.print("Ingrese el nombre del contacto: ");
String Buscar = Leer.nextLine();
while ((linea = br.readLine())!=null) {
String[] A = linea.split("/");
String Nombre1="",Numero1="", Email1="";
for (int x=0; x<A.length; x++){
B=A[x].toLowerCase();
if(B.equals(Buscar.toLowerCase()))
System.out.println(linea);
}
}