I am trying to parse HTML for specific data, but I have problems with returned characters, at least I think the problem is. I use a simple substring method to split the HTML, as I know in advance what I'm looking for.
Here is my parse method:
public static void parse(String response, String[] hashItem, String[][] startEnd) throws Exception
{
for (i = 0; i < hashItem.length; i++)
{
part = response.substring(response.indexOf(startEnd[i][0]) + startEnd[i][0].length());
value = part.substring(0, part.indexOf(startEnd[i][1]));
DATABASE.setHash(hashItem[i], value);
}
}
Here is an example HTML that gives me problems
<table cellspacing=0 cellpadding=2 class=smallfont>
<tr onclick="lu();" onmouseover="style.cursor='hand'">
<td class=bodybox nowrap> 21,773,177,147 $ </td><td></td>
<td class=bodybox nowrap> 629,991,926 F </td><td></td>
<td class=bodybox nowrap> 24,537 P </td><td></td>
<td class=bodybox nowrap> 0 T </td>
<td></td><td class=bodybox nowrap> RT </td>
There are hidden return characters, but when I try to add them to the string I'm trying to use, this will not work, if at all. Is there a way, or perhaps a better way to remove hidden characters from HTML, to make it easier to parse? Any help is much appreciated, as always.
source
share