我有一个Hex字符串,其值类似于
26C726F026C426A1269A26AB26F026CC26E226C726E226CD
我想知道如何将其拆分为字符串数组,其中数组的每个索引都包含一组2个字符。
实施例: string(0)= 26,string(1)= C7,string(2)= 26,string(3)= F0,依此类推。 我怎么能这样做?
答案 0 :(得分:2)
Dim MyList as New List(Of String)
Dim s as String = "26C726F026C426A1269A26AB26F026CC26E226C726E226CD"
For x as Integer = 0 to s.Length - 1 step 2
MyList.Add(s.substring(x,2))
Next
您可以使用 MyList(0),MyList(1)等来获取