Splitting a string on comma and printing the results

前端 未结 3 794
我在风中等你
我在风中等你 2021-01-19 11:39

I am using the following code to split a string and retrieve them:

Private Sub Button1_Click(sender As Object, e As EventArgs) 
      Handles Button1.Click
          


        
3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-19 12:01

    You need to show part not part(0)

    For Each part In parts
    
         MsgBox(part)
        Next
    

提交回复
热议问题