0
我想從字符串中獲取不同的值。字符串看起來是這樣的:vb.net不同的值不工作
這是richtextbox3的文字:
121010, 121010, 121011, 121010,
這是我的代碼:
' Create a list of integers.
Dim date3 As String = RichTextBox3.Text
Dim dates As New List(Of Integer)(New Integer() _
{date3})
' Select the unique numbers in the List.
Dim distinctDates As IEnumerable(Of Integer) = dates.Distinct()
Dim output As New System.Text.StringBuilder("Distinct ages:" & vbCrLf)
For Each age As Integer In distinctDates
output.AppendLine(age)
Next
' Display the output.
RichTextBox7.Text = (output.ToString)
End If
但是當我運行它,我得到一個錯誤
「從字符串「121010,121010,121011,121010」轉換爲「整數」類型無效。「
我在做什麼錯?
所以我需要嘗試不同的方法? –
@ user3188226是的,我用例子更新了我的答案 – sloth
完美!謝謝 –