假設我有一個像最優雅的方式來獲得字符串變量2斑點在vb.net中分離
Datos = "0000.0100.0200."
我要像做閱讀字符串,當我得到.
我知道有一個線二值在4個字符的字符串編碼所以0000我會得到
Dim a = 00
Dim b = 00
那麼對於0100,我會得到
Dim a = 01
Dim b = 00
那麼對於0200,我會得到
Dim a = 02
Dim b = 00
我
Dim Items() As String = Split(Datos, ".")
For Each oneItem As String In Items
If Not oneItem .Length < 4 Then
Dim a = oneItem (0) & oneItem (1)
Dim b = oneItem (2) & oneItem (3)
MsgBox(a)
MsgBox(b)
End If
Next
有從vb.net一個4個字符的字符串得到2個值的另一種更優雅的方式?
在字符串大小可變的情況下?我用split和for循環 – cMinor
@cMinor - 在這種情況下,是的,你的方法很好;因爲我的警告不再是真的。 –