0

I want to parse html-page with this code < span class = bld >1.2456 RON < / span > I want to get text "1.2456 RON" with SOUP in Android. What will I have done? Tell me please

user725803
  • 227
  • 2
  • 5
  • 12

1 Answers1

0

I think this is how you do it:

String html  = "< span class = bld >1.2456 RON < / span >";

Elements e = new Jsoup(html).select(".bld");

System.out.println(e.get(0).text().toString());
Jonathan Frias
  • 200
  • 4
  • 9