私はこの文字列を持っています
Dim test As String = "12,32,12,32,12,12,32,15,16,15,14,12,32"
文字列を取得したい
newstr = 12,32,15,16,14
私はこれだけ試しました
Dim test As String = "12,32,12,32,12,12,32,15,16,15,14,12,32"
Dim word As String
Dim uc As String() = test.Split(New Char() {","c})
For Each word In uc
' What can i do here?????????
Next
一意の番号のみ vb asp.net でそれを行うにはどうすればよいですか
正しい答え
Dim test As String = "12,32,12,32,12,12,32,15,16,15,14,12,32"
Dim word As String
Dim uc As String() = test.Split(New Char() {","c}).Distinct.ToArray
Dim sb2 As String = "-1"
For Each word In uc
sb2 = sb2 + "," + word
Next
MsgBox(sb2.ToString)