2016-08-13 64 views
0

我抓住網頁的HTML源代碼並嘗試將其轉換爲單行字符串,但我無法。VB.NET:將多行字符串轉換爲單行

這是我的代碼:

Dim source As String = client.DownloadString("http://www.whocallsme.gr/el/master/lookup/19588") 
source = source.Replace(vbCrLf, "") 

我也使用Environment.NewLine和vbNewLine代替vbCrLf嘗試,但結果仍然相同。

回答

1

試試這個:

source = source.Replace(vbLf, "").Replace(vbCr, "") 
+0

非常感謝!問題解決了! – suchanoob

相關問題