我需要幫助使一個功能,打開一個文件,併爲每一個新行,在PHP中使像explode("\n", $var)
變量。我試過VB.NET對於每一個新行
Dim words As String = GetFileContents(OpenFileDialog1.FileName)
For Each word As String In words
Dim doHash As String = MD5(word)
If String.Equals(doHash, hash.Text) Then
Label2.Text = "derp"
Else
Label2.Text = "lol"
End If
Next
但它使每個字母成爲一個新的變量。
您可能正在尋找['String.Split'](http://msdn.microsoft.com/zh-CN/library/tabh47cf%28v=vs.100%29.aspx)。以下是C#中爆炸的示例:http://www.dotnetperls.com/explode-function – 2012-04-26 17:52:55
您可以提供'GetFileContents'的代碼嗎?它看起來像是將值作爲單個String而不是String的數組返回。如果你要迭代它們,你需要一個數組。 – mellamokb 2012-04-26 17:52:57
閱讀['String.Split'](http://msdn.microsoft.com/en-us/library/system.string.split.aspx)和/或['File.ReadLines'](http:///msdn.microsoft.com/en-us/library/dd383503.aspx)。 – vcsjones 2012-04-26 17:53:14