Hello everyone, I can not play a function that I use a lot in vb.net, basically allows you to extract text from a web page without a source of unique references:
How can I play the same operation with B4A?
B4X:
Dim HTML as String
Dim V1,V2 as Object
Dim V as String
HTML = WebBrowser1.DocumentText.ToString
V1 = Split(HTML, Chr(34) & ">")
V2 = Split(V1(56), "</a></h2>")
V = V2(0)