我从我的网站获取文件内容:
Dim client As WebClient = New WebClient()
Dim text = client.DownloadString("http://myurl.com/raw.php")
以下text
是:
Line
Another Line
Test1
Test2
现在,我怎样才能通过text
变量运行一个循环,从每一行中获取一个文本?
我试过这个:
Dim str As String() = text.Split(":::")
For Each line As String In str
MsgBox(line)
Next
我正在用 完成每一行:::
,但这种方法看起来很难看,我希望有更好的解决方案?