I need help with the java. As I have such a character in a line 1.11 € 1.10 € 1.02 € 0.66 € 0.50 and I need to add these characters to separate variables like double i = 1.11 double a = 1.10 and so on.
try {
final Document document = Jsoup.connect("http://www.jozita.lt/").get();
Elements ele = document.select("div#fuel_price_table_silale_1");
final String title = ele.select("td.price").text();
System.out.println(title);
} catch (IOException ex) {
Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
}