String strLine = "";
try
{
BufferedReader b = new BufferedReader(new FileReader("html.txt"));
strLine = b.readLine();
} catch(Exception e)
{
e.printStackTrace();
}
String[] temp = strLine.split("<");
temp = temp[1].split(">");
String temp1 = ("<"+temp[0]+">");
strLine = strLine.replaceFirst(temp1,"");
System.out.println(strLine);
Basically I want to remove this string
<span title="Representation in the International Phonetic Alphabet (IPA)" class="IPA">
from from the file that contains
<span title="Representation in the International Phonetic Alphabet (IPA)" class="IPA">no'b?l</span>
However so far my code works only if the string contains no quotes. How can I fix this problem. I have tried using
.replaceAll("\\\"","\\\\\"");
but still failed.
Any help or info will be greatly apreciated.