I need to extract information from an unstructured web page in Android. The information I want is embedded in a table that doesn\'t have an id.
-
2020-11-28 02:45
Why don't you just write
int start=data.indexOf("Description");
After that take the required substring.