我有这个字符串
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)