我希望在我的Flutter应用程序中使用此JSON中的16
作为数字:
link to the Json code
答案 0 :(得分:1)
您需要导入async,http和convert。
var response = await http.get("http://motyar.info/webscrapemaster/api/?url=http://teertoday.com/&xpath=/html/body/div[5]/div/table/tbody/tr[3]/td[1]#vws");
var jsonResponse = json.decode(response);
var line = jsonResponse["text"].replaceAll(new RegExp(r"(\s\n)"), ""); //this gives you the line of "text" and then replaces all of the spaces and \n
答案 1 :(得分:0)
我并不熟悉颤动,但我会读到关键词" text"然后使用正则表达式对数字进行过滤。