Left of a character in a string in vb.net

前端 未结 8 1252
耶瑟儿~
耶瑟儿~ 2021-01-03 20:24

say if I have a string 010451-09F2

How to I get left of - from the above string in vb.net

I want 010451

The left fu

8条回答
  •  梦谈多话
    2021-01-03 21:10

    Dim str As String = "010451-09F2"
    Dim leftPart As String = str.Split("-")(0)
    

    Split gives you the left and right parts in a string array. Accessing the first element (index 0) gives you the left part.

提交回复
热议问题